I have problems to obtain image from url on iPad 3 4G test device.
Code works with ipad 1 & 2 and also with iphone 3gs and iphone 4.
But seems that image is nil
when requested from server.
I don't experience the issue, but clients report problems...
I belive that problem is in the following code
Code:
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.image.com/img_download/499441.jpg"]];
UIImage *thumbnail = [UIImage imageWithData:data];
Url in this code is not real but it is correct for clarification.
Thanks!