Is it possible to read a url to an image and set a UIImageView to the image at this url?
NSString *ImageURL = @"YourURLHere"; NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:ImageURL]]; imageView.image = [UIImage imageWithData:imageData];