I am getting the image\'s URL at run time and I want to download & display these images in a table. Images are going to be download asynchronously. What is more importan
If asynchronous downloading is your real issue, refer to AFNetworking library's UIImageView category. Especially this function:
- (void)setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholderImage
You can include this UIimageview category into your project and set cell images derived from that class.