1

I want to change the text of the delete button in red that comes up when we swipe on a table cell. Is that possible?? if possible can you please tell how to do that.

Thank you :) \m/ \m/

1 Answers1

3

Yes, You can try like this,

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
    return @"Name";
}
Balu
  • 8,470
  • 2
  • 24
  • 41