UITableView SwipeGesture

时间:2010-04-23 04:55:17

标签: iphone uitableview

我正在使用带有编辑按钮的UITableView来删除一行。当我在行中滑动时,它会显示默认的“删除”按钮。但是我不需要它。必须通过编辑按钮删除单元格的内容,而不是默认情况下单独删除。单击“滑动到删除”按钮。

1 个答案:

答案 0 :(得分:3)

覆盖editingStyleForRowAtIndexPath

- (UITableViewCellEditingStyle)tableView:(UITableView*)aTableView
           editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    if (self.editing)
        return UITableViewCellEditingStyleDelete; //or whatever

    return UITableViewCellEditingStyleNone;
}