核心数据中的拒绝规则无法正常工作

时间:2010-11-09 10:46:17

标签: iphone core-data ios nsmanagedobjectcontext

这是我的对象模型:

客户可以拥有多个项目(可选),但项目必须只有一个客户(必需)。 MemoEntry只能有一个Project(可选),并且可以有不同的MemoEntry使用相同的Project(可选)。

object model

删除后:

  • Client.projects有拒绝规则
  • Project.client具有Nullify规则
  • Project.memos有拒绝规则
  • MemoEntry.project具有Nullify规则

在每个自己的TableViewControllers中删除Client,Project或MemoEntry时调用的代码:

// Delete the managed object.
NSManagedObjectContext *context = [self.fetchedResultsController managedObjectContext];
[context deleteObject:[self.fetchedResultsController objectAtIndexPath:indexPath]];

NSError *error;
if (![context save:&error]) {
  // Update to handle the error appropriately.
  NSLog(@"MyApp - Unresolved error %@, %@", error, [error userInfo]);
  exit(-1);  // Fail
}

粗体问题:

如果我创建一个Project然后删除它的父客户端,则代码会正确地跟随IF语句。如果我访问“已删除”客户端,它仍然存在,我可以编辑clientName和其他属性,保存并且一切正常。我可以转到项目并打开项目并查看更新后的客户端clientName但是当我通过项目访问客户端时,我的应用就会退出。

我的删除规则是否未正确设置?调用[context save:&error]是否保存删除,即使它出错了?有什么想法吗?

* edit - 断点错误停止的行:

NSEntityDescription *entity = [NSEntityDescription entityForName:@"Client" inManagedObjectContext:passedManagedObjectContext];

抛出错误:

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '+entityForName: could not locate an NSManagedObjectModel for entity name 'Client''
*** Call stack at first throw:
(
    0   CoreFoundation                      0x30897ed3 __exceptionPreprocess + 114
    1   libobjc.A.dylib                     0x3002f811 objc_exception_throw + 24
    2   CoreData                            0x3162f575 +[NSEntityDescription entityForName:inManagedObjectContext:] + 124
    3   EasyMemo                            0x00008ebb -[EditingViewController viewWillAppear:] + 1478
    4   UIKit                               0x31ec4d9b -[UINavigationController _startTransition:fromViewController:toViewController:] + 610
    5   UIKit                               0x31ec4ac3 -[UINavigationController _startDeferredTransitionIfNeeded] + 182
    6   UIKit                               0x31ebd21b -[UINavigationController pushViewController:transition:forceImmediate:] + 606
    7   UIKit                               0x31ebcfb3 -[UINavigationController pushViewController:animated:] + 34
    8   EasyMemo                            0x000058fd -[DetailProjectViewController tableView:didSelectRowAtIndexPath:] + 368
    9   UIKit                               0x31f7ae6f -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 662
    10  UIKit                               0x31f772af -[UITableView _userSelectRowAtIndexPath:] + 130
    11  Foundation                          0x349c7e8d __NSFireDelayedPerform + 368
    12  CoreFoundation                      0x3084e7fb __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 14
    13  CoreFoundation                      0x3084e2ad __CFRunLoopDoTimer + 860
    14  CoreFoundation                      0x3081f7a5 __CFRunLoopRun + 1088
    15  CoreFoundation                      0x3081f277 CFRunLoopRunSpecific + 230
    16  CoreFoundation                      0x3081f17f CFRunLoopRunInMode + 58
    17  GraphicsServices                    0x31e445f3 GSEventRunModal + 114
    18  GraphicsServices                    0x31e4469f GSEventRun + 62
    19  UIKit                               0x31e51123 -[UIApplication _run] + 402
    20  UIKit                               0x31e4f12f UIApplicationMain + 670
    21  EasyMemo                            0x0000259f main + 70
    22  EasyMemo                            0x00002554 start + 40
)

terminate called after throwing an instance of 'NSException'

2 个答案:

答案 0 :(得分:0)

NSFetchedResultsController

中包含的被删除对象是什么?

如果-save:失败,则不会向持久性存储区写出任何内容,也不会删除您的对象。这就是您仍然可以访问它们的原因。

至于“但是当我通过项目访问客户端时,我的应用程序退出。”

错误是什么?

控制台中有什么报道?

objc_exception_throw上设置一个断点,看看实际导致崩溃的原因。

答案 1 :(得分:0)

发现问题:

我正在使用Books示例进行添加。 我只是在没有添加的情况下调用对象时传递了他们拥有的addsManagedObjectContext。 所以它是空的......