hey,
Could any one guide me through this I have around 15 entries in table I would like another 15 to come up with the load more in last UITableViewCell. could anyone help me?
hey, Could any one guide me through this I have around 15 entries in
Share
to show an extra row in the tableview, in
In
In
You need to update the numberOfRows variable according to the displayed rows.
Edit: After fetching the extra entries, you can add them to the existing entries array using the following method. Your original array should be a
NSMutableArrayto use this method.[originalEntriesArray addObjectsFromArray:extraEntriesArray];