Ok, rien de spécial ici, pas d'erreurs, et je déclare bien NSMutableData *receivedData;
mais je renvoie <> alors que je m'attends à ce qu'une page web soit renvoyée ; que se passe-t-il ?
- (void)viewDidLoad {
[super viewDidLoad];
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com"]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if (theConnection) {
receivedData = [[NSMutableData data] retain];
NSLog(@"receivedData %@", receivedData);
} else {
// inform the user that the download could not be made
}
}