Evening, I'm trying to set an ImageView.image (an IBOutlet in this case) with an image downloaded from the web.
I've already ridden a lot of questions about this in stack overflow.
And I've found this common answer:
NSURL *url = [NSURL URLWithString:@"http://www.fnordware.com/superpng/pnggrad16rgb.png"];
NSData *data = [NSData dataWithContentsOfURL:url];
NSLog(@"imageData: %@", data);
UIImage *image = [UIImage imageWithData:data];
NSLog(@"image: %@", image);
self.imageView.image = image;
But of course in my case does not work. My logs are always null.
Can you please tell me which is the problem?

url