My controller inherits from UITableViewController with the left button assigned to 'editButtonItem'. How can I find out when the user has tapped the "Done" button after issuing all of the deletes they want?
self.navigationItem.leftBarButtonItem = self.editButtonItem;
I'm implementing
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
With this, I see when the deletes occur for each item in the table but I would also like to know when the "Done" button is hit.