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.
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.
Mine is:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return self.editing ;
}