Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

Thanks

share|improve this question
1  
Did you ever consider excepting answers to your other questions? – Eiko Sep 10 '10 at 13:30

2 Answers

up vote 24 down vote accepted

Mine is:

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath 
{
   return self.editing ;
}
share|improve this answer

First, to confirm if a table cell can be deleted simply reply to canEditRowAtIndexPath.

-(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
  // Return YES or NO
  return(YES);
  }
}

Then, to actually delete the table cell reply to commitEditingStyle.

-(void)tableView:(UITableView *)tv commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
  if (editingStyle == UITableViewCellEditingStyleDelete) {
  // Delete your data

  // Delete the table cell
  [self.tableView deleteRowAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
  }
}

Good luck Mats Stijlaart!

share|improve this answer
1  
How does this answer the question? – BoltClock Sep 14 '10 at 2:47
The first code sample let you disable swipe-to-delete. The second code sample let you delete a row when editing is active. I was sure it could help you... Regards – rjobidon Sep 21 '10 at 2:48
1  
In the first block of code, it should be "BOOL" as return type instead of "void" – Chintan Patel May 17 '11 at 15:36
Thanks Chintan Patel I corrected the first block of code! rjobidon – rjobidon Oct 22 '11 at 2:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.