3

我正在尝试UITableView使用以下代码进行更新:

NSMutableIndexSet *sectionsToDelete = [NSMutableIndexSet indexSet];
NSMutableIndexSet *sectionsToInsert = [NSMutableIndexSet indexSet];
NSMutableIndexSet *sectionsToReload = [NSMutableIndexSet indexSet];

/* ... */

[[self tableView] beginUpdates];
if ([sectionsToReload count]) {
    DBGLogObject(sectionsToReload);
    [[self tableView] reloadSections:sectionsToReload withRowAnimation:animation];
}
if ([sectionsToDelete count]) {
    DBGLogObject(sectionsToDelete);
    [[self tableView] deleteSections:sectionsToDelete withRowAnimation:animation];
}
if ([sectionsToInsert count]) {
    DBGLogObject(sectionsToInsert);
    [[self tableView] insertSections:sectionsToInsert withRowAnimation:animation];
}
[[self tableView] endUpdates];

日志:

sectionsToReload = <NSMutableIndexSet: 0x71b19f0>[number of indexes: 2 (in 1 ranges), indexes: (1-2)]
sectionsToInsert = <NSMutableIndexSet: 0x71ac570>[number of indexes: 3 (in 2 ranges), indexes: (0 3-4)]

(注意sectionsToDelete日志中没有。)

问题是,即使没有删除,我也会收到错误消息:

2012-10-04 19:21:16.769 Syntax[903:c07] *** Assertion failure in -[UITableView _endCellAnimationsWithContext:], /SourceCache/UIKit_Sim/UIKit-2372/UITableView.m:826
2012-10-04 19:24:51.655 Syntax[903:c07] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'attempt to delete section 2, but there are only 2 sections before the update'

有任何想法吗?

4

3 回答 3

3

实际上,现在我重复了您的错误 - 如果您的数据在此更新之前只有 2 个部分(这是错误消息所暗示的),那么您无法重新加载第 1 和 2 部分。您的意思是更新 0 和 1 ? 我猜当重新加载发生时,它必须首先删除旧数据并添加新数据,这就是删除错误消息的来源。

于 2012-10-06T02:58:19.083 回答
0

做了“清理构建文件夹”,现在它按预期工作。我不知道为什么。

于 2012-10-06T19:55:54.033 回答
0

您应该更改数据源,如果删除行或部分,则应更改 tableView 中的行数或部分

于 2013-11-25T09:28:01.797 回答