In ManagedObjectAttributeEditor.m, there is this method:...#pragma mark -#pragma mark Alert View Delegate- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { if (buttonIndex == [alertView cancelButtonIndex]) { [self.managedObject.managedObjectContext rollback]; [self.navigationController popViewControllerAnimated:YES]; }}@endNow, if you say you're going to fix, and then don't, the context never gets rolled back. It should really be:...#pragma mark -#pragma mark Alert View Delegate- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { [self.managedObject.managedObjectContext rollback]; if (buttonIndex == [alertView cancelButtonIndex]) { [self.navigationController popViewControllerAnimated:YES];...