删除表视图中的单元格

发布于 2024-12-03 21:06:37 字数 719 浏览 0 评论 0原文

我在删除表格视图中的单元格时遇到问题,当我按下删除按钮时,我的程序崩溃了。

这是我的代码:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the managed object at the given index path
        sect = [listArray objectAtIndex:indexPath.row];
        [sect removeObjectAtIndex:indexPath.row];

        // Update Event objects array and table view
        [listArray removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
        tableView.editing = YES;

        }
}

I'm having a problem with my deleting of cells in the tableview , my program simply crashes when i press de delete button.

Here is my code for it :

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        // Delete the managed object at the given index path
        sect = [listArray objectAtIndex:indexPath.row];
        [sect removeObjectAtIndex:indexPath.row];

        // Update Event objects array and table view
        [listArray removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
        tableView.editing = YES;

        }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯了 2024-12-10 21:06:37

完全删除以下内容:

sect = [listArray objectAtIndex:indexPath.row];
[sect removeObjectAtIndex:indexPath.row];

只需

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];

调用 [listArray removeObjectAtIndex:indexPath.row];,然后调用 reloadData 刷新您的 UITableView

Remove the following completely:

sect = [listArray objectAtIndex:indexPath.row];
[sect removeObjectAtIndex:indexPath.row];

and

[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];

Just call [listArray removeObjectAtIndex:indexPath.row]; then call reloadData to refresh your UITableView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文