I am trying to insert a new cell into a table view where the data is sorted. Is there an easy & efficient way to do this using the API?
The easiest way seems to be insert the new data into an NSMutableArray, sort using a sort descriptor, and call reloadData. This should only redisplay the visible rows, so it doesn't look too bad.
Would it be worthwhile to do a binary search on the data array, insert the data and then insert the cell?