我只想在删除一个单元格时更改TableViewCell
的确认按钮标题,但我在引用中找不到任何相关属性。
我只想将标题从删除更改为垃圾,有谁知道怎么做?
答案 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";
}
希望这能帮到你