gpt4 book ai didi

ios - 核心数据支持的 UITableView 在删除单元格时出错

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:06:30 25 4
gpt4 key购买 nike

我有一个由核心数据对象数组支持的 UITableView,它是通过附加两个名为文件夹和注释的核心数据对象数组制成的。每当我尝试从 TableView 中删除一行时,它都会抛出:

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0.  The number of rows contained in an existing section after the update (2) must be equal to the number of rows contained in that section before the update (2), plus or minus the number of rows inserted or deleted from that section (0 inserted, 1 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

这是要删除的代码(在我的 UITableViewCell 子类中):

NSManagedObjectContext *context = [NSManagedObjectContext MR_contextForCurrentThread];
[object MR_deleteInContext:context];
[context MR_saveToPersistentStoreAndWait];
[tableViewController loadData];
[tableView deleteRowsAtIndexPaths:@[self.indexPath] withRowAnimation:UITableViewRowAnimationLeft];

注意:MR_ 方法是 MagicalRecord方法,他们说到做到。

这是 UITableViewController 中的 loadData 方法(基本上是重新获取数组):

NSPredicate *textParentFilter = [NSPredicate predicateWithFormat:@"parent == %@", self.parent];
self.notes = [Note MR_findAllWithPredicate:textParentFilter];
NSPredicate *folderParentFilter = [NSPredicate predicateWithFormat:@"parentFolder == %@", self.parent];
self.folders = [Folder MR_findAllWithPredicate:folderParentFilter];

还有:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [self.notes count] + [self.folders count];
}

我明白为什么会出现异常:我正在删除 loadData 中的行,然后 numberOfRowsInSection 与 TableView 和核心数据存储不同步。但是,如果我将 deleteRowsAtIndexPaths 替换为 [tableView reloadData],它会很好地删除(但没有动画)。我试过 beginUpdates 和 endUpdates,切换删除内容的顺序,但无济于事。

最佳答案

在使用 UITableViews 和 Core Data 时,存储中的对象(例如,笔记和文件夹数组)始终与 UITableView 委托(delegate)/数据源调用匹配非常重要。当您开始为单元格设置动画以进行添加、删除和更新时,您会遇到同步问题,有时这些值不会对齐。一个很好的例子是当您必须在显示或显示表格的一部分时连续执行多个单元格添加/删除。如果您使用 [tableView reloadData],您会强制执行同步,但无法为单元格设置动画。

NSFetchedResultsController 可用于将多个单元格添加/删除与动画同步。这将需要您进行一些重新布线,但没有您想象的那么多。有了它,您可以控制动画样式,甚至可以在保持表格完好无损的情况下批量修改单元格。 NSFetchedResultsController 将根据谓词监听 Co​​re Data 中的变化,并将这些变化反射(reflect)在 tableview 中。这意味着您可以让多个 TableView 使用它们自己的 NSFetchedResultsController 进行响应,而无需通知它们,并且一切都将保持同步。

寻找骨架代码的一个好地方是在 XCode 中建立一个新的 Core Data 项目。您需要添加到代码中的方法(在 MasterViewController.m 中找到):

// this references your controller that listens to Core Data and communicates with the tableview
- (NSFetchedResultsController *)fetchedResultsController

// delegate methods:
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller;
- (void)controller:(NSFetchedResultsController *)controller didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex forChangeType:(NSFetchedResultsChangeType)type;
- (void)controller:(NSFetchedResultsController *)controller didChangeObject:(id)anObject
atIndexPath:(NSIndexPath *)indexPath forChangeType:(NSFetchedResultsChangeType)type
newIndexPath:(NSIndexPath *)newIndexPath;
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller;

然后您的 TableView 将需要查询 NSFetchedController 实例的委托(delegate)/数据源方法。例如:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [[self.fetchedResultsController sections] count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
id <NSFetchedResultsSectionInfo> sectionInfo = [self.fetchedResultsController sections][section];
return [sectionInfo numberOfObjects];
}

如果您觉得自己足够高级,可以阅读一个很棒的教程,其中展示了如何对单元格添加/删除进行排队以提高性能:

http://www.fruitstandsoftware.com/blog/2013/02/uitableview-and-nsfetchedresultscontroller-updates-done-right/

NSFetchedResultsController 是您在基本的 Core Data 教程中并没有真正听说过的东西之一,但事实证明,在执行表格动画和处理大量数据时,它是一项真正的 Assets (通过缓存)。

关于ios - 核心数据支持的 UITableView 在删除单元格时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21819290/

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