views:

192

answers:

1

Hi,

I am developing an iPhone application with multiple table view. On each UITableview I have to load RSS feed data. Each feed has its own image.

For a single feed, I try to parse the xml and load the image inside the delegate itself.

Can any one advise me how to implement the lazy loading for all Rss feed view?

+2  A: 

This sample project from Apple should help you make this happen.

http://developer.apple.com/iphone/library/samplecode/LazyTableImages/Introduction/Intro.html

stitz