jacobsieradzki
jacobsieradzki

Reputation: 1108

Load images quicker on a uitableviewcell, downloading from internet

I have an UITableView which is a social timeline for pictures, when I scroll down, it is transparent for a while until it loads the images, but when I scroll down and I scroll back up again, the image has to redownload again which I personally think is a waste and is because I am using reusable cells. Is there anyway to load the images quicker? I am already using dispatch_async on high priority.

Upvotes: 0

Views: 119

Answers (1)

damirstuhec
damirstuhec

Reputation: 6207

You should look at SDWebImage and AsyncImageView libraries for async image (down)loading that also support caching.

Upvotes: 2

Related Questions