当用户滑动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];
}
}
答案 0 :(得分:2)
如果您只想将按钮的标题更改为“取消”,则只需在表格视图的委托中实施-tableView:titleForDeleteConfirmationButtonForRowAtIndexPath:
方法。
-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{
return @"Cancel";
}