当我呼叫[self.tableView setEditing:YES animated:YES]
时,tableview进入编辑模式。当我按下圆形减号按钮时,会出现删除按钮。我想更改此删除按钮的标题。我怎么能这样做?
答案 0 :(得分:12)
使用正确的UITableViewDelegate
方法很容易做到:
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
return @"CustomLabel";
}