导航控制器上的编辑按钮未进入编辑模式

发布于 2024-09-27 12:29:35 字数 861 浏览 3 评论 0原文

我有一个 UIToolbar,上面有一个编辑栏按钮。这被定义为

self.toolbarItems = [NSArray arrayWithObjects:self.editButtonItem,nil];

编辑栏项目显示,但是当我点击它时,没有任何反应,它不会更改为“完成”,并且没有任何编辑控件显示。

我已经实现了以下方法,因为我希望能够点击一个单元格并显示一个视图来编辑该单元格的值。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if (self.editing) {
        NSLog(@"editing ON in didSelect...");
    }else{
        [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
    }
}

- (void)setEditing:(BOOL)editing animated:(BOOL)animate {
    if (editing) {
        NSLog(@"editing ON in setEditing");
    }else {
        NSLog(@"not editing in setEditing");
    }

}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}

是什么导致编辑按钮无法正常工作?

谢谢。

I have a UIToolbar with an edit bar button on it. This is defined as

self.toolbarItems = [NSArray arrayWithObjects:self.editButtonItem,nil];

The edit bar item shows up, and but when i tap it, nothing happens, it does not change to Done and none of the editing controls show up.

I have implemented the following methods as i would like to be able to tap a cell and display a view to edit that cell's value.

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if (self.editing) {
        NSLog(@"editing ON in didSelect...");
    }else{
        [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
    }
}

- (void)setEditing:(BOOL)editing animated:(BOOL)animate {
    if (editing) {
        NSLog(@"editing ON in setEditing");
    }else {
        NSLog(@"not editing in setEditing");
    }

}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
    return YES;
}

What is causing the edit button to function incorrectly?

Thanks.

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

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

发布评论

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

评论(1

淡墨 2024-10-04 12:29:35

我认为 self.editButtonItem 只应该像 UINavigationControllers 中那样自动工作,而不是工具栏。如self.navigationItem.rightButton = self.editButton;

I think self.editButtonItem is only supposed to work automatically like that in UINavigationControllers, not toolbars. As in self.navigationItem.rightButton = self.editButton;

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