如何更改tableviewcell删除确认按钮的提示字符串

时间:2015-06-13 05:06:54

标签: ios objective-c swift

我只想在删除一个单元格时更改TableViewCell的确认按钮标题,但我在引用中找不到任何相关属性。 我只想将标题从删除更改为垃圾,有谁知道怎么做?

2 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分:2)

覆盖UITableViewDelegate的现有方法。

目标 - C

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

<强>夫特

func tableView(tableView: UITableView, titleForDeleteConfirmationButtonForRowAtIndexPath indexPath:NSIndexPath) -> String
{ 
      return "Trash"; 
}

希望这能帮到你