I am displaying RSS feeds in my table view. as there are hundred of feeds so my application takes lots of time to load them and display them i want to load just first 25 feed and display them in Table view and when User Click on More 25 application load next 25 and display them. Any Idea........... :) I am using TouchXML to parse XML Feed.
How to display Data from RSS Feed in Parts in Iphone Application
676 Views Asked by Nauman.Khattak At
3
It depends on the webservice that provides you the RSS feed. If you can request them to load just 25 feeds, then the server side is ok
Now is the client side, you need a UITableView as usual. In the
numberOfRows
delegate method, you return 25 (also need to +1 for last cell), and shows the first 25 feeds. At the bottom of the table view the last cell can be a cell with text "Load More", then here, you started to load moreYou can also put the loading and parsing RSS feed in thread, this will boost your performance