In my app I am getting the data from the web-service and I have to display it in UITableView. But the condition here is I have to display only 10 records initially,then once
If I correctly understand your question ,you can do the following.
1 ) implement scrollViewDidScroll 2 ) check for visible rows in that 3 ) if you found the last row just call the web service for loading more data 4 ) on getting the data just reload the table
1 ) implement scrollViewDidScroll
2 ) check for visible rows in that
3 ) if you found the last row just call the web service for loading more data
4 ) on getting the data just reload the table
Try it .