I have a UIViewController
that implements TableViews delegate and datasource protocols.
Now I want to add "swipe to delete" gesture to cells.
How should I go about it.
I have given a blank implementation of commitEditingStyle
method and also set the Editing property to YES.
Still the swipe feature is not coming .
Now Do I need to separately add UISwipeGesture
to each cell ?
Or am I missing something ?
As Dan has commented above, you need to implement the following table view delegate methods:
tableView:canEditRowAtIndexPath:
tableView:commitEditingStyle:forRowAtIndexPath:
Note: I have tried this in iOS 6 and iOS 7.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return YES - we will be able to delete all rows
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
// Perform the real delete action here. Note: you may need to check editing style
// if you do not perform delete only.
NSLog(@"Deleted row.");
}