gpt4 book ai didi

ios - UITableView 插入行崩溃

转载 作者:行者123 更新时间:2023-11-29 12:16:47 25 4
gpt4 key购买 nike

我有一个从 API 为我返回数据的委托(delegate)方法:

- (void)pagedDataSource:(PagedDataSource *)dataSource
didLoadAdditionalItems:(NSInteger)items; {


NSMutableArray *indexPaths = [NSMutableArray arrayWithCapacity:items];
NSInteger numberOfItems = [dataSource numberOfItems];

for (int i = (int)numberOfItems - (int)items; i < numberOfItems; ++i) {
[indexPaths addObject:[NSIndexPath indexPathForRow:i inSection:0]];
}

[UIView setAnimationsEnabled:NO];
[[self tableView] beginUpdates];

[[self tableView] insertRowsAtIndexPaths:indexPaths
withRowAnimation:UITableViewRowAnimationNone];

[[self tableView] endUpdates];
[UIView setAnimationsEnabled:YES];
}

所以第一次它运行良好,但是当我尝试加载新条目然后程序再次调用此委托(delegate)方法时,它会导致崩溃。

让我简单描述一下它是如何工作的。

所以我有 PagedDataSource 对象,我用一些 block 初始化,当 PagedDataSource 从 API 接收数据时,它应该请求返回数据,它使用自指针将数据推送到我的 View Controller 。所以你可以看到上面这个方法。然后在这种方法中,我尝试插入我刚收到的所需行。当我向下滚动表格时,它会请求新项目,并且每次当应用程序在收到新数据后调用此方法时,我都会再插入一行。

例如,如果我第一次收到 16 个项目,那么我会插入从 0 到 15 的行

然后,当我向下滚动表格时,我会插入从 16 到 31 的新行。所以假设我的限制 = 每个请求 16 个项目。

但问题是,在我加载了一些项目(例如 144 个项目)之后,我想用新数据集重新加载我的表。所以我从 0 开始加载数据。

假设我第一次请求 144 个视频,然后我点击一个按钮,现在我想在该表中查看另一个类别的 7 个视频。但它导致了这次崩溃,因为这里

- (void)pagedDataSource:(PagedDataSource *)dataSource
didLoadAdditionalItems:(NSInteger)items;

它尝试从 0 插入新项目,但我遇到了这个问题:

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'attempt to insert row 144 into section 0, but there are only 0 rows in section 0 after the update'

所以我检查了 indexPaths 数组的计数,这里第一次只有 7 个项目。

我该怎么办?如何删除或释放 TableView ?

所以跳过所有之前写的。假设我第一次加载 16 个项目

这是我上面描述的 indexPaths 数组的日志:

<__NSArrayM 0x7fbdc1e8af50>(
<NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0},
<NSIndexPath: 0xc000000000008016> {length = 2, path = 0 - 1},
<NSIndexPath: 0xc000000000010016> {length = 2, path = 0 - 2},
<NSIndexPath: 0xc000000000018016> {length = 2, path = 0 - 3},
<NSIndexPath: 0xc000000000020016> {length = 2, path = 0 - 4},
<NSIndexPath: 0xc000000000028016> {length = 2, path = 0 - 5},
<NSIndexPath: 0xc000000000030016> {length = 2, path = 0 - 6},
<NSIndexPath: 0xc000000000038016> {length = 2, path = 0 - 7},
<NSIndexPath: 0xc000000000040016> {length = 2, path = 0 - 8},
<NSIndexPath: 0xc000000000048016> {length = 2, path = 0 - 9},
<NSIndexPath: 0xc000000000050016> {length = 2, path = 0 - 10},
<NSIndexPath: 0xc000000000058016> {length = 2, path = 0 - 11},
<NSIndexPath: 0xc000000000060016> {length = 2, path = 0 - 12},
<NSIndexPath: 0xc000000000068016> {length = 2, path = 0 - 13},
<NSIndexPath: 0xc000000000070016> {length = 2, path = 0 - 14},
<NSIndexPath: 0xc000000000078016> {length = 2, path = 0 - 15}
)

然后我有切换器在同一个表中加载另一个对象,然后调用我上面描述的方法这里是 indexPaths 的日志(第二次):

<__NSArrayM 0x7fbdc1e13920>(
<NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0},
<NSIndexPath: 0xc000000000008016> {length = 2, path = 0 - 1},
<NSIndexPath: 0xc000000000010016> {length = 2, path = 0 - 2},
<NSIndexPath: 0xc000000000018016> {length = 2, path = 0 - 3},
<NSIndexPath: 0xc000000000020016> {length = 2, path = 0 - 4},
<NSIndexPath: 0xc000000000028016> {length = 2, path = 0 - 5},
<NSIndexPath: 0xc000000000030016> {length = 2, path = 0 - 6}
)

我在 [[self tableView] endUpdates]; 行上获得了 SIGABRT

最佳答案

我认为你的错误是在 indexPathForRow:i 中附加 NSIndexPath 时。并确保您的 dataSource 已更新。

试试这个:


[dataSource addObject:@"boom0"];
[dataSource addObject:@"boom1"];
[dataSource addObject:@"boom3"];
[dataSource addObject:@"boom4"];

NSInteger item = 4;

NSMutableArray *indexPaths = [NSMutableArray arrayWithCapacity:item];

for (int i = item; i != 0; i--)
{
[indexPaths addObject:[NSIndexPath indexPathForRow:dataSource.count - i inSection:0]];
}

[tableView beginUpdates];

[tableView insertRowsAtIndexPaths:indexPaths
withRowAnimation:UITableViewRowAnimationNone];

[tableView endUpdates];

编辑

要重新填充表格,您需要做的是从您的数据源中删除所有对象,例如:

[dataSource removeAllObjects];

重新加载你的表

[tableView reloadData];

诀窍都在您的dataSource中,如何操作它取决于您。


//This is using method

- (void)pagedDataSource:(PagedDataSource *)dataSource didLoadAdditionalItems:(NSInteger)items repopulate:(BOOL)repopulate
{
if(repopulate)
{
[dataSource removeAllObjects];

[tableView reloadData];
}

//this will execute the codes below

...
}

您还可以跟踪部分中的行数:如果dataSource的当前计数小于之前的计数

触发removeAllObjects & reloadData:

int previousCount = 0;

- (void)pagedDataSource:(PagedDataSource *)dataSource didLoadAdditionalItems:(NSInteger)items
{
if([dataSource numberOfItems] < previousCount)
{
[dataSource removeAllObjects];

[tableView reloadData];
}

//this will execute the codes below

...
}

另一种选择是在 dataSource 已经更新时重新加载表格,因为单元格已经创建,我们不需要创建新单元格,或者您可能喜欢重新制作单元格?嗯..

- (void)pagedDataSource:(PagedDataSource *)dataSource didLoadAdditionalItems:(NSInteger)items
{
if([dataSource numberOfItems] < previousCount) // || if(repopulate)
{
[tableView reloadData];

return;
}

//this will not / must not execute the codes below

...
}

希望这对你有帮助,干杯.. :)

关于ios - UITableView 插入行崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31798897/

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