Hi all,
In my application, I want to fetch new xml data after user scrolls through tableview and pulls the first cell down. As the data is loaded in tableview in chronological order, the updated data will be shown before the first cell.
I want to run this process on new thread, so what is the best option :
Subclass NSThread and use its instance
Subclass NSOperation and use its instance
Use NSThread methods directly
Thanx in advance.