iphone dev - loading table content asynchronously
- by Brian
My app has a navigation controller which push and pop a series of views. One of the tableViews loads .xml file from URL and it takes 4-5 seconds. If I click the back button on the navigation bar, it will only respond after the content of the table finish loading. Is there an easy way to load the content asynchronously so that the app will still respond to my gesture on the navigation bar?
p.s. I search this on the Internet and people are talking about multithreading. I don't know a lot about threads so please be more specific.
Thanks in advanced =)