I am using this code for displaying the image from URL to UIImageview
UIImageView *myview=[[UIImageView alloc]init]; myview.frame = CGRectMake(50, 50, 320,
Instead of dispatch_async, Use SDWebImage for caching the images.
This is best I have seen...
The problem of dispatch_async is that if you lost focus from image, it will load again. However SDWebImage, Caches the image and it wont reload again.