Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using lazy loading to show images on a table view. But I need to create a tableview with multiple images in every cell.Which can be scrolled. All images are loaded from server only How can I create this without any lagging for table scrolling ? Is there any tutorial available for this

share|improve this question
1  
Create the needed UIImageView's for your cell and use github.com/rs/SDWebImage for async downloading of images. – Praveen S 14 hours ago

2 Answers

Try this code. SDWebImage. It downloads image from server and save it to device cache. Also if you don't want save it to cache then you might have a look at AFNetworking.

share|improve this answer
afnetworkings uiimageview category uses cache – amar 14 hours ago
There is an option available NSURLCacheStorageNotAllowed in AFNetworking. Check that. – Divyu 14 hours ago
your ans explicitly implies AFNetworking does not use cacheing..which i pointed out as far as checking out is concerned i have done many tweaks in it to disable and enable caching to show updated images etc.. – amar 14 hours ago

Try this https://github.com/nicklockwood/AsyncImageView .Easy to download images asyncronously from server.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.