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]);
}
}