How to disable slide to delete for a UITableView

Viewed 11645

Does anybody know how to disable the 'slide-to-delete' in a uitableview?

I still want to be able to delete the rows while the table is in editing mode.

2 Answers

Mine is:

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 
{
   return self.editing ;
}
Related