0

我目前已经为我的表格视图实现了 setEditing/commitEditing 方法,现在它在滑动单元格时显示“删除”按钮。

只是想知道是否有任何方法可以将此按钮上的文本从“删除”更改为其他内容,以便我可以使用“提交编辑”方法执行自定义行为,例如更新某些设置?

谢谢

4

1 回答 1

3

您可以使用 UITableViewDelegate 方法指定删除按钮标题:

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
于 2013-07-17T09:25:06.260 回答