We are currently doing something similar in our application. Since UITableView inherits from UIScrollView, you will probably want to take advantage of some of UIScrollView's properties and methods. You will almost definitely want to implement a class that conforms to UIScrollView delegate. Then, when the user scrolls to the bottom of the currently loaded records in the UITableView, you can query the web service for the next page of data. The documentation for UIScrollView is here and the documentation for UIScrollViewDelegate here.
Here's an example implementation of the scrollViewDidScroll: method of UIScrollViewDelegate which should get you the behavior of loading records when the user reaches the bottom of the scroll view.
- (void) scrollViewDidScroll:(UIScrollView *) scrollView {
// Calculate whether the user has reached the bottom of the scroll view.
CGPoint offset = scrollView.contentOffset;
CGRect bounds = scrollView.bounds;
CGSize size = scrollView.contentSize;
UIEdgeInsets inset = scrollView.contentInset;
float y = offset.y + bounds.size.height - inset.bottom;
float h = size.height;
float reload_distance = 0;
if (y >= h + reload_distance) {
// Request next page of data here.
}
}
The beauty of the UITableViewDataSource methods is that they do not require that you have your data stored in memory. You can provide the necessary data for each cell requested on demand when tableView:cellForRowAtIndexPath: is called. Similarly, you can provide the value to return from tableView:numberOfRowsInSection: without actually having all of the data for the rows in memory. You will most likely want to keep data for cells around the currently viewed in cells in memory, however, to ensure reasonable performance. Unfortunately, this may all be rather tricky, but it should be possible. You can find more documentation about UITableDataSource here.