7

我有“滑动删除”的功能TableViewCell。我想自定义删除按钮。在此处输入图像描述

这可能吗,以及如何访问“删除”按钮?

4

3 回答 3

12

如果只需要更改按钮的标题,则只需要添加 titleForDeleteConfirmationButtonForRowAtIndexPath 方法即可。

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
    return @"NewButtonName";
}
于 2014-02-18T12:03:21.283 回答
6

当用户执行滑动操作时将调用此方法

只需将其放在您的 CustomCell 中

- (void)willTransitionToState:(UITableViewCellStateMask)state
    {
        [super willTransitionToState:state];
        if ((state & UITableViewCellStateShowingDeleteConfirmationMask) == UITableViewCellStateShowingDeleteConfirmationMask)
        {
            for (UIView *subview in self.subviews)
            {
                if ([NSStringFromClass([subview class]) isEqualToString:@"UITableViewCellDeleteConfirmationControl"])
                {
                    UIImageView *deleteBtn = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 64, 33)];
                    [deleteBtn setImage:[UIImage imageNamed:@"arrow_left_s11.png"]];
                    [[subview.subviews objectAtIndex:0] addSubview:deleteBtn];
                }
            }
        }
    }

你不应该这样尝试,你不应该改变 Apple 的默认视图。

于 2013-03-22T07:07:06.337 回答
-2

试试这个:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
  if (editingStyle == UITableViewCellEditingStyleDelete)
   {
    //   Your Code
    }
}
于 2012-12-04T12:13:04.277 回答