Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UITableView rows load asynchronously

On launch of app, i want to show 10 rows, at the bottom "Load 15 more", on click on "Load 15 more" the next 15 rows should add to the bottom of the table and again show "Load 15 more", until no rows found. note: I am using php to load table data as an xml feed. If anyone has any tutorial/sample code pl send me the link

like image 848
Mohan Avatar asked Mar 31 '10 07:03

Mohan


2 Answers

This could be helpful: http://www.iphonedevsdk.com/forum/iphone-sdk-development/18876-paging-pagination-load-more-uitableview.html

like image 150
gammelgul Avatar answered Nov 08 '22 09:11

gammelgul


I wrote something that might be useful to you : https://github.com/nmondollot/NMPaginator

It encapsulates pagination, and works with pretty much any webservice. It also features a UITableView with automatic fetching of next results as you scroll down.

like image 28
nmondollot Avatar answered Nov 08 '22 09:11

nmondollot