UITableview 编辑:完成按钮不执行任何操作

发布于 2024-10-27 03:42:45 字数 849 浏览 8 评论 0原文

我的表填充有来自 SQL 数据库的数据。当我单击“编辑”时,我可以删除数据库中的行和条目,但是当我单击“完成”时,什么也没有发生。

为了实现删除,我使用 commitEditingStyle:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

if (editingStyle == UITableViewCellEditingStyleDelete) {

    //Get the object to delete from the array
    buddies *buddyObj = [appDelegate.buddiesArray objectAtIndex:indexPath.row];
    [appDelegate removeBuddy:buddyObj];

    //Delete the object from the table.
    [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    [self.tableView reloadData];
}   

}

我在这个应用程序中有另一个表,编辑/完成工作正常。

具有编辑工作的表格是应用程序启动时显示的第一个表格,非工作表格称为单击选项卡栏的第二项。

任何帮助表示赞赏。

谢谢, 最大限度

My table is populated with data from a sql DB. When I click on edit I can delete rows and the entry in the DB, but when I click on Done nothing happens.

To implement deleting I use commitEditingStyle:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

if (editingStyle == UITableViewCellEditingStyleDelete) {

    //Get the object to delete from the array
    buddies *buddyObj = [appDelegate.buddiesArray objectAtIndex:indexPath.row];
    [appDelegate removeBuddy:buddyObj];

    //Delete the object from the table.
    [self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    [self.tableView reloadData];
}   

}

I have another table in this app and Edit/Done works fine.

The table with editing working is the first table showed when app starts, the non working table is called clicking on second item of a tabbar.

Any help is appreciated.

Thanks,
Max

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

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

发布评论

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

评论(1

青衫儰鉨ミ守葔 2024-11-03 03:42:45

检查委托设置是否正确。

Check that delegate is set properly.

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