How can I take data I've downloaded from a http connection then add the data to the table view in chunks like the apps store so if you scroll to the bottom it says load 25 more.

Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Assuming your back-end service supports a "retrieve the next 25" function of some sort, I think doing this would require you to implement a custom table cell that is returned when your table data model is asked for the cell in the last row. When selected, your table delegate would then need to request the next 25 results and update the contents of the table's data provider with the results. |
|||
|
|