UITableView - Loading data from internet
- by Emil
Hey.
I have seen many apps that load data to UITableViews from the internet, and they usually load smoothly. Now it's my turn to load in that kind of data. I am getting different data at the same time, separating categories with ~ and pieces of categories with #. This works great, and I have managed to separate the data in obj-c perfectly.
Everything in my app works, it's just that the loading takes a lot of time.
So, I guess the real question is, how can you load in data for a tableView in the background, showing a label/UIActivityView or something while it is loading?
Thank you.