I am consuming data from a REST Web Service via RestKit and would like to display it in a tableview. Consuming the data works really good. Now I want to display the data in a table. The web service is requested every two seconds.
How would you implement the tableview? How to get to know changes? Is there some mechanism in iOS that helps to get the delta?
I think there is no mechanism that helps you out. But you can consume the data on another thread (in the background) and “append” the rows to the TableView, dont use reload than your tableview isn’t useable.
I hope that helps you out a bit =]