更改默认删除按钮UITableViewCell

时间:2012-09-06 15:24:01

标签: objective-c cocoa-touch uitableview

有什么办法可以更改UITableViewCell中的默认删除按钮吗?

1 个答案:

答案 0 :(得分:-2)

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