Reordering a NSFetchedResultsController
I’m working with a NSFetchedResultsController backed UITableView. Up until now I’ve just been ordering the items by the time they were added. I’m moving on to Delete and Edit. Editing the content itself isn’t needed, once an item is added to this list, it can’t be changed. Deleting is straightforward in With reordering, I have a conundrum. I have an approach for the actual re-order that will have the View and the data playing nice. But, now I need to persist the order. I don’t have a property in Core…