我需要更改在我将编辑设置为UITableView
后尝试从YES
删除行时显示的默认删除按钮的标题。
答案 0 :(得分:88)
您可以在UITableView委托方法
中更改它- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
答案 1 :(得分:5)
答案 2 :(得分:2)
Swift 3
差别很小_
func tableView(_ tableView: UITableView, titleForDeleteConfirmationButtonForRowAt indexPath: IndexPath) -> String? {
return "Erase"
}
答案 3 :(得分:0)
对于那些已经实现了方法'titleForDeleteConfirmationButtonForRowAtIndexPath'的人,仍然看到相同的'Delete'文本。
尝试通过自动补全从头开始键入方法 ,因为我复制了某人的密码,并且它的旧记法有点不同并且没有被调用!