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/
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/
Yes, You can try like this,
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @"Name";
}