tags:

views:

23

answers:

1

I am new to iphone development.i want to check whether the image is loaded in the image view and if the image view is nil then load the image.i want to implement this in cell for row at index path so that i can increase the scrolling performance of the table , How can i do that ? please help me out.Thanks.

A: 

Luckily Apple provides a sample that does just this, LazyTableImages. You can move IconDownloader into your project and then change your TableViewController implementation to look like that of RootViewController

bpapa
How can i implement this i am showing many view with images in table
Warrior
Each of your table view controllers in which you want to lazily load images should have code similar to RootViewController.
bpapa