I use Core Data for multiple threads, so I create a ManagedObjectContext for each thread. When I save MOC-Thread, I am merging, so modifications are available in MOC-main.
When you modify an existing managed entity, the NSFetchedResultsChangeUpdate event is not raised for my NSFetchResultsControllers. However, when I insert or delete a managed entity, events are raised for my NSFetchResultsController. Just not for updates.
Is anyone familiar with this problem?
source
share