This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// See http://lists.apple.com/archives/cocoa-dev/2008/Jun/msg00237.html for bugs below | |
- (void)mergeChangesFromContextDidSaveNotification:(NSNotification*)notification { | |
NSManagedObject *object; | |
NSSet* updates; | |
// Workaround bug 5982319 | |
// Fault in all updated objects because chnages to faults won't trigger fetchedResultsControlle | |
updates = [notification.userInfo objectForKey:NSUpdatedObjectsKey]; | |
for (object in updates) { | |
[[self.roManagedObjectContext objectWithID:[object objectID]] willAccessValueForKey:nil]; |