I have write a little class to perform the download of the images by using an NSURLConnection. The idea it\'s to delegate the download to this class to avoid to block the execu
Cesar
For async image loading, caching and threaded operation, I use SDImageCache class from http://github.com/rs/SDWebImage. I also wrote my own several times, but this one is brilliant and I've thrown all my old code away.
From its documentation:
Just
#import
theUIImageView+WebCache.h
header, and call thesetImageWithURL:placeholderImage:
method from thetableView:cellForRowAtIndexPath:
UITableViewDataSource method. Everything will be handled for you, from async downloads to caching management.
Hilton