“解锁删除”编辑子视图时

发布于 2024-12-10 11:52:41 字数 762 浏览 0 评论 0原文

我将此表链接到数据库,右上角有“编辑”。 我可以删除滑动,但如果我按“编辑”按钮,什么也不会发生! 我的意思是,我在同一程序中为另一个表编写了类似的调用,当我按下编辑时,会出现一个小的“解锁删除”;然后如果你按下它你可以删除元素/行...... 不在这里!

- (void)viewDidLoad
{
    self.title = @"Categorie";
    [super viewDidLoad];
    self.navigationItem.rightBarButtonItem = self.editButtonItem;
    [self.navigationItem setHidesBackButton:YES animated:YES];
    [tableView reloadData];
}

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

- (void)tableView:(UITableView *)_tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        // A lot of code... 
    }
}

I have this table on linked to a database with a "Edit" on top-right.
I can delete swiping, but if I press the Edit button nothing happen!
I mean, I wrote a similar call for another table in the same program, and when i press edit, a small "Unlock to delete" appear; then if you press it you can delete the element/row...
not here!

- (void)viewDidLoad
{
    self.title = @"Categorie";
    [super viewDidLoad];
    self.navigationItem.rightBarButtonItem = self.editButtonItem;
    [self.navigationItem setHidesBackButton:YES animated:YES];
    [tableView reloadData];
}

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

- (void)tableView:(UITableView *)_tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        // A lot of code... 
    }
}

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

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

发布评论

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

评论(1

不奢求什么 2024-12-17 11:52:42

您需要告诉 tableView 开始使用 setEditing:(BOOL)editingAnimated:(BOOL)animate 进行编辑

//Init your editBarButton
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(editTable)];

//Init your doneBarButton
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneEditing)];

以下是示例操作方法:

- (void)editTable {
   if (!self.tableView.editing) [self.tableView setEditing:YES animated:YES];
   self.navigationController.rightBarButtonItem = self.doneButton;
}

- (void)doneEditing {
   if (self.tableView.editing) [self.tableView setEditing:NO animated:YES];
   self.navigationController.rightBarButtonItem = self.editButton;
}

You need to tell the tableView to begin editing with setEditing:(BOOL)editing animated:(BOOL)animate

//Init your editBarButton
UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(editTable)];

//Init your doneBarButton
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneEditing)];

Here's the a sample action method:

- (void)editTable {
   if (!self.tableView.editing) [self.tableView setEditing:YES animated:YES];
   self.navigationController.rightBarButtonItem = self.doneButton;
}

- (void)doneEditing {
   if (self.tableView.editing) [self.tableView setEditing:NO animated:YES];
   self.navigationController.rightBarButtonItem = self.editButton;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文