0

当用户滑动单元格时,我使用以下代码显示删除按钮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];
  }
}
4

1 回答 1

2

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

-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return @"Cancel";
}
于 2013-03-01T15:30:44.587 回答