gpt4 book ai didi

objective-c - 即使上下文未保存,NSFetchedResultsController 委托(delegate)也会被触发

转载 作者:行者123 更新时间:2023-12-05 09:24:29 25 4
gpt4 key购买 nike

我有一个 NSManagedObject 实体,它覆盖了 validateForInsert 和 validateForUpdate。

根据我编写的一些逻辑,当对象一致性出现问题时,此方法会正确返回 NO。

该应用程序是一个经典的 uitableview,由 NSFetchedResultsController 支持,带有详细 View Controller 。

当我添加一个新实体时,细节 View Controller 被实例化为一个 nil objectID,并被插入导航堆栈。当我弹出细节 Controller 时,调用 [context save:&error],通过放置一些断点,我发现当我添加一个新实体时,获取的委托(delegate)方法被触发一次,即使 validateForInsert 返回 NO,并且 includePendingChanges 设置为也不是。

当我再次尝试弹出细节 Controller 时,保存当然会再次调用,验证方法也是如此,但这次 NSFetchedResultsControllerDelegate 没有被触发。

我想知道这是否是正常行为,或者我的模型中是否遗漏了什么。

[更新]

这是委托(delegate)方法中断点后的堆栈跟踪:

#0  0x0003e5ba in -[MyTableViewController controller:didChangeObject:atIndexPath:forChangeType:newIndexPath:] at ......
#1 0x011512f9 in -[NSFetchedResultsController(PrivateMethods) _managedObjectContextDidChange:] ()
#2 0x00b46a29 in __57-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_0 ()
#3 0x01759855 in ___CFXNotificationPost_block_invoke_0 ()
#4 0x01759778 in _CFXNotificationPost ()
#5 0x00a8b19a in -[NSNotificationCenter postNotificationName:object:userInfo:] ()
#6 0x0106a673 in -[NSManagedObjectContext(_NSInternalNotificationHandling) _postObjectsDidChangeNotificationWithUserInfo:] ()
#7 0x01101f5e in -[NSManagedObjectContext(_NSInternalChangeProcessing) _createAndPostChangeNotification:withDeletions:withUpdates:withRefreshes:] ()
#8 0x01065ad3 in -[NSManagedObjectContext(_NSInternalChangeProcessing) _processRecentChanges:] ()
#9 0x0106916b in -[NSManagedObjectContext save:] ()
#10 0x00004490 in -[MyAppDelegate saveContext:]

可以看出,即使在上下文中调用了保存,也没有调用验证,因此这使得获取的 Controller 委托(delegate)被触发。

[更新 2]

特别是,不知道它是否相关,这在 controllerDidChangeObject 中导致异常(不总是):

CoreData: error: Serious application error. An exception was caught from the delegate of NSFetchedResultsController during a call to -controllerDidChangeContent:. Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (4) must be equal to the number of rows contained in that section before the update (3), plus or minus the number of rows inserted or deleted from that section (0 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out). with userInfo (null)

其实源表中有三行,只是因为context中创建object时context绕过了validateFor方法,好像插入了一行,行数不一致。

Controller 委托(delegate)非常简单和标准:

-(void)controllerWillChangeContent:(NSFetchedResultsController*)controller {
[self.tableView beginUpdates];
}

- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type newIndexPath:(NSIndexPath *)newIndexPath {
// for testing purpose I am not doing any modification
return;
}

-(void)controllerDidChangeContent:(NSFetchedResultsController*)controller {
[self.tableView endUpdates];
}

我仍然不知道是谁在更新表格 View

最佳答案

我认为这是正常行为;获取的结果 Controller 在显示更改之前不需要保存。如果您不希望在细节 View 中所做的更改在保存之前出现在母版中,则必须为细节 View 创建一个单独的 NSManagedObject 上下文。这样,只有保存到持久存储的对象才会返回到获取的结果 Controller 。

关于objective-c - 即使上下文未保存,NSFetchedResultsController 委托(delegate)也会被触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12184842/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com