I am making a table that has images and data in each cell.
I want to load the images from a web server asynchronously without actually caching them.
Can anybody please help.?
I am making a table that has images and data in each cell.
I want to load the images from a web server asynchronously without actually caching them.
Can anybody please help.?
You can use SDWebImage
to handle this . simply download the SDKs and include files in your project and after that you can import "UIImageView+WebCache.h
" in your .h file In the class you want to do your task , after that you can use following code in your cellForRowAtIndexPath
delegate method as follows:
[ cell.imageView setImageWithURL:[NSURL URLWithString:@"your url string"] placeholderImage:[UIImage imageNamed:@"Placeholder.png"]];