I am developing an application that uses SQLite. I want to show a list of users (UITableView) using a paginating mechanism. Could any one please tell me how to load more dat
Use limit and offset in your queries and fill your tableview with that content. When the user scrolls down, load the next offset.
Implement the tableView:willDisplayCell:forRowAtIndexPath: method in your UITableViewDelegate and check to see if it's the last row
tableView:willDisplayCell:forRowAtIndexPath:
UITableViewDelegate