iphone Core Data Unresolved error while saving iphone Core Data Unresolved error while saving ios ios

iphone Core Data Unresolved error while saving


It means there's a mandatory property has been assigned nil. Either in your *.xcodatamodel check the "optional" box or when you are saving to the managedObjectContext make sure that your properties are filled in.

If you're getting further errors after changing your code to suit the two requirements try cleaning your build and delete the application from your iPhone Simulator/iPhone device. Your model change may conflict with the old model implementation.

Edit:

I almost forgot here's all the error codes that Core Data spits out:Core Data Constants ReferenceI had trouble with this before and I realised I unchecked the correct optional box. Such trouble finding out the problem. Good luck.


I struggled with this for a little while myself. The real problem here is that the debugging you've got isn't showing you what the problem is. The reason for this is because CoreData will put an array of NSError objects in the "top level" NSError object it returns if there is more than one problem (This is why you see error 1560, which indicates multiple problems, and an array of error 1570s). It appears that CoreData has a handful of keys it uses to stash information in the error it returns if there is an issue that will give you more useful information (Such as the entity the error occurred on, the relationship/attribute that was missing, etc). The keys you use to inspect the userInfo dictionary can be found in the reference docs here.

This is the block of code I use to get reasonable output from the error returned during a save:

    NSError* error;    if(![[survey 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]);        }    }

It will produce output that tells you the fields that are in missing, which makes fixing the problem significantly easier to deal with.


I'm throwing this in as an answer, even though it's really more of an embellishment to Charles' snippet. The straight output from NSLog can be a mess to read and interpret, so I like to throw in some white space and call out the value of some critical 'userInfo' keys.

Here's a version of the method I've been using. ('_sharedManagedObjectContext' is a #define for '[[[UIApplication sharedApplication] delegate] managedObjectContext]'.)

- (BOOL)saveData {    NSError *error;    if (![_sharedManagedObjectContext save:&error]) {        // If Cocoa generated the error...        if ([[error domain] isEqualToString:@"NSCocoaErrorDomain"]) {            // ...check whether there's an NSDetailedErrors array                        NSDictionary *userInfo = [error userInfo];            if ([userInfo valueForKey:@"NSDetailedErrors"] != nil) {                // ...and loop through the array, if so.                NSArray *errors = [userInfo valueForKey:@"NSDetailedErrors"];                for (NSError *anError in errors) {                    NSDictionary *subUserInfo = [anError userInfo];                    subUserInfo = [anError userInfo];                    // Granted, this indents the NSValidation keys rather a lot                    // ...but it's a small loss to keep the code more readable.                    NSLog(@"Core Data Save Error\n\n \                      NSValidationErrorKey\n%@\n\n \                      NSValidationErrorPredicate\n%@\n\n \                      NSValidationErrorObject\n%@\n\n \                      NSLocalizedDescription\n%@",                       [subUserInfo valueForKey:@"NSValidationErrorKey"],                       [subUserInfo valueForKey:@"NSValidationErrorPredicate"],                       [subUserInfo valueForKey:@"NSValidationErrorObject"],                       [subUserInfo valueForKey:@"NSLocalizedDescription"]);                }            }            // If there was no NSDetailedErrors array, print values directly            // from the top-level userInfo object. (Hint: all of these keys            // will have null values when you've got multiple errors sitting            // behind the NSDetailedErrors key.            else {                    NSLog(@"Core Data Save Error\n\n \                      NSValidationErrorKey\n%@\n\n \                      NSValidationErrorPredicate\n%@\n\n \                      NSValidationErrorObject\n%@\n\n \                      NSLocalizedDescription\n%@",                       [userInfo valueForKey:@"NSValidationErrorKey"],                       [userInfo valueForKey:@"NSValidationErrorPredicate"],                       [userInfo valueForKey:@"NSValidationErrorObject"],                       [userInfo valueForKey:@"NSLocalizedDescription"]);            }        }         // Handle mine--or 3rd party-generated--errors        else {            NSLog(@"Custom Error: %@", [error localizedDescription]);        }        return NO;    }    return YES;}

This allows me to see the value for 'NSValidationErrorKey', which, when I encountered the issue from the OP, pointed directly to the non-optional Core Data entities that I'd forgot to set before trying to save.