I have an NSMutableArray of sorted objects that display in a UITableView.
I want to insert a new object into an array and update the table view - this requires the index of the newly inserted object.
I can not find the system message to tell me the correct insertion index into the array, which I need to update the table view.
The best I can find is:
- add new object
- kind
- using an old copy of the array, find the location of the new object (which requires a search)
or
- write my own insertion position search
Surely there should be a message to find the insertion position in a sorted array? Or am I missing something obvious here?
sorting ios insertion-sort objective-c uitableview
Matt
source share