I have a main NSManagedObjectContext that it's created in the appDelegate.

Know, I'm using another NSManagedObjectContext for editing/adding new objects without affecting the main NSManagedObjectContext, until I save them.

When I save the second NSManagedObjectContext, the changes are not reflected in the main NSManagedObjectContext, but If I open the .sqlite database from simulator, the changes have been saved correctly into the .sqlite database. No matter if I fetch again the data, even if I create a third NSManagedObjectContext, I can't see the changes from the second NSManagedObjectContext, but those changes are on disk at this moment...

If I quit and open the app, all changes are there.

What can cause the main NSManagedObjectContext not to see the new changes of the store ?

Before this approach, I was using the same NSManagedObjectContext and undoManager, but I want to change it to use two different NSManagedObjectContext.

thanks,

m.

second NSManagedObjectContext save:
-----------------------------------------

    NSError* error = nil;

    if ([managedObjectContext hasChanges]) {
        NSLog(@"This new object has changes");
    }

    if (![managedObjectContext save:&error]) {
        NSLog(@"Failed to save to data store: %@", [error localizedDescription]);
        NSArray* detailedErrors = [[error userInfo] objectForKey:NSDetailedErrorsKey];
        if(detailedErrors != nil && [detailedErrors count] > 0) {
            for(NSError* detailedError in detailedErrors) {
                NSLog(@"  DetailedError: %@", [detailedError userInfo]);
            }
        }
        else {
            NSLog(@"  %@", [error userInfo]);
        }
    }
link|improve this question

80% accept rate
feedback

1 Answer

up vote 5 down vote accepted

If you haven't already done so, I suggest reading the Apple documentation on Core Data : Change Management.

You need to notify the first context of the changes that were saved through the second context. When saving a context, it posts a NSManagedObjectContextDidSaveNotification. Register for that notification. In the handler method, merge into the first context the changes saved through the second context. For example:

// second managed object context save

// register for the notification
[[NSNotificationCenter defaultCenter] 
    addObserver:self 
       selector:@selector(handleDidSaveNotification:)
           name:NSManagedObjectContextDidSaveNotification 
         object:secondManagedObjectContext];

// rest of the code ommitted for clarity
if (![secondManagedObjectContext save:&error]) {
    // ...
}

// unregister from notification
[[NSNotificationCenter defaultCenter] 
    removeObserver:self 
              name:NSManagedObjectContextDidSaveNotification 
            object:secondManagedObjectContext];

Notification handler:

- (void)handleDidSaveNotification:(NSNotification *note) {
    [firstManagedObjectContext mergeChangesFromContextDidSaveNotification:note];
}
link|improve this answer
I thought the NSManagedObjectContextDidSaveNotification was not necessary/mandatory, I've read other posts and that was not clear to me. I'll try what you suggest and post here again. Thanks! – mongeta May 27 '11 at 18:45
thanks, works perfectly! – mongeta May 28 '11 at 16:29
you're welcome! – octy May 29 '11 at 2:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.