gpt4 book ai didi

ios - 从 uitableview cellForRowAtIndexPath 委托(delegate)中删除行时应用程序崩溃

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:40:35 26 4
gpt4 key购买 nike

我有一个 TableView 。我正在实现一个单元格将开始褪色的功能(随着 30 秒的持续时间减少 alpha)。完成 30 秒后,将调用 View 动画的完成处理程序以从数据源中永久删除行(一个数组)。所有的东西都在 cellForRowAtIndexPath 委托(delegate)方法中。我的问题是在更新前和更新后保持数组计数同步。

代码:

- (UITableViewCell *)tableView:(UITableView *)tableView 
cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *postCellId = @"postCell";
UITableViewCell *cell = nil;

NSUInteger row = [indexPath row];
cell = [tableView dequeueReusableCellWithIdentifier:postCellId];
if (cell == nil) {
cell = [[[UITableViewCell alloc]
initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:postCellId] autorelease];
}

Post *currentPost = [posts objectAtIndex:row];
cell.textLabel.text = [currentPost postTitle];
cell.textLabel.font = [UIFont systemFontOfSize:14];

cell.detailTextLabel.text = [currentPost postDescr];
cell.detailTextLabel.font = [UIFont systemFontOfSize:10];

NSTimeInterval duration = 30;
[UIView animateWithDuration:duration delay:0.0 options:UIViewAnimationOptionBeginFromCurrentState | UIViewAnimationOptionAllowUserInteraction
animations:^ {
cell.contentView.alpha = 0;
} completion:^(BOOL finished) {
[self.tableView beginUpdates];
NSLog(@"delete index >> %d from array >> %@", row, posts);
[posts removeObjectAtIndex:indexPath.row];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];
}];

return cell;
}

日志:

2015-06-04 07:22:05.764 Feeder[1177:60b] delete index >> 0 from array

( "", "", "", "", "" ) 2015-06-04 07:22:05.766 Feeder[1177:60b] delete index >> 1 from array >> ( "", "", "", "" ) 2015-06-04 07:22:05.767 Feeder[1177:60b] delete index >> 2 from array >> ( "", "", "" ) 2015-06-04 07:22:05.768 Feeder[1177:60b] delete index >> 3 from array >> ( "", "" )

如果看到最后一条日志,就是崩溃的问题。

崩溃日志:

2015-06-04 07:22:05.770 Feeder[1177:60b] * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayM removeObjectAtIndex:]: index 3 beyond bounds [0 .. 1]'

如何解决。

最佳答案

你的错误是你在 block 中保留了旧的 indexPath,而不是更新它。

例如:如果您的数组中有 2 条记录,则完整 block 中的操作是

  1. 删除第 0 行
  2. 删除第 1 行

但是,如果你删除第一个单元格(第 0 行),你的第 1 行 indexPath.row 更新为 0。但是你想删除 1。

所以,我认为你可以动态获取indexPath,然后删除

[self.tableView beginUpdates];
NSIndexPath *path = [tableView indexPathForCell:cell];
NSLog(@"delete index >> %d from array >> %@", path.row, posts);
[posts removeObjectAtIndex:path.row];
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:path] withRowAnimation:UITableViewRowAnimationNone];
[self.tableView endUpdates];

我不确定这是否可行,请尝试一下。

关于ios - 从 uitableview cellForRowAtIndexPath 委托(delegate)中删除行时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30633807/

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