I make several calls to a webservice and receive back a object which I insert into the NSMutableArray (which is the table’s data source). I do this on a secondary thread. What is the proper way to update the tableview with this new data? I have already tried the basic way with reloadData.
I make several calls to a webservice and receive back a object which I
Share
Use -performSelectorOnMainThread: to update the table view on the main thread.