I have a UITableview which shows 10 rows currently which is fixed static. Now I want to add a feature into it. I want to add a more 10 rows to the table when user reach to the last row of the UITableView. I mean currently I am showing fixed 10 rows in the application.
But now I want to add 10 more rows whenever user reaches to the last row of previous UITableview.
Please give me any suggestions or any sample code to achieve my motive. Thanks in advance.
How would you exactly want to invoke the loading of the additional 10 rows? When a user just scrolls down to see the first 10 that are loaded by default he might not want to load 10 more already.
You may add a “add more” line as the last row of your table. When the user clicks on this one you add 10 more.
(I don’t know how one would detect a “bouncing effect” like shifting up the visible rows to indicate that one would like to see more.)
The basic logic would look like this:
cellForRowAtIndexPathyou check if the user clicked on the last line and then invoke your code to add the 10[myTable reloadData]numberOfRowsInSectionby 10 and make sure thatcellForRowAtIndexPathwill correctly return your new lines 11-20ps if you REALLY want 10 additional rows to be loaded when the user reaches the end of the table you need to invoke the loading of 10 more in
cellForRowAtIndexPathorwillDisplayCell:forRowAtIndexPath:when it is called for your last line.