在UITableView中滑动到取消而不是删除

时间:2013-03-01 15:22:24

标签: ios cocoa-touch

当用户滑动tableview单元格时,我使用以下代码显示删除按钮。我想在这个按钮中写取消而不是删除,我该如何实现这个功能?

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

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  if (editingStyle == UITableViewCellEditingStyleDelete) {
    //remove the deleted object from your data source.
    //If you're data source is an NSMutableArray, do this
    [self.dataArray removeObjectAtIndex:indexPath.row];
  }
}

1 个答案:

答案 0 :(得分:2)

如果您只想将按钮的标题更改为“取消”,则只需在表格视图的委托中实施-tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:方法。

-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return @"Cancel";
}