NSURLResponse *response =[[NSURLResponse alloc] initWithURL:requestingURL
MIMEType:@"text/xml"
expectedContentLength:-1
textEncodingName:nil];
webData = [NSURLConnection sendSynchronousRequest:theRequest
returningResponse:response
error:NULL];
I get the compiler warning saying warning pass argument from incompatible pointer type. I suspect this is because the NSURLResponse argument is a double star argument, (NSURLResponse **)?
What am I doing wrong here?