Asynchronous image downloader in UITableView

Does anyone know of any good library / tutorial that can do asynchronous image loading for a cell in a UITableView? I am looking for a method that does not require too much code change in my current code and integrates easily with a regular synchronous UITableView.

+4
source share
4 answers

Try to find Three20

An open source library written by a guy who wrote the official Facebook app for iOS. In addition, the facebook application code is based on this library.

+4
source

If you prefer it on your own, read the MHLazyTableImages , it comes with the github project. This is an adaptation of Apple LazyTableImages. Or you can use HJCache .

+2
source

Fully-Loaded is another one that is pretty simple. This is a more general image loaded that you can use in custom cells of the table view.

https://github.com/foursquare/fully-loaded

+1
source

I really like SDWebImage , which is a cache-enabled asynchronous image downloader with the UIImageView category.

https://github.com/brendanlim/SDWebImage

0
source

All Articles