Reputation: 47
I can not find the anwser over the net, I don't know even it's possible to do this,
Is it possible to do not have the delete button (at your right) in edition mode when you try to delete one item?
Upvotes: 1
Views: 320
Reputation: 27224
- (UITableViewCellEditingStyle)tableView:(UITableView *)aTableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
// Detemine if the user can edit the comment.
if (something) {
return UITableViewCellEditingStyleDelete;
}
return UITableViewCellEditingStyleNone;
}
Upvotes: 1