在UITableView编辑模式下更改删除按钮标题

时间:2014-03-21 20:16:59

标签: ios cocoa-touch uitableview

当我呼叫[self.tableView setEditing:YES animated:YES]时,tableview进入编辑模式。当我按下圆形减号按钮时,会出现删除按钮。我想更改此删除按钮的标题。我怎么能这样做?

1 个答案:

答案 0 :(得分:12)

使用正确的UITableViewDelegate方法很容易做到:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
    return @"CustomLabel";
}
相关问题