I have a UITableView that is editable. I am commiting changes via:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
While in edit mode, I would like the user to be able to select a row, which will push a new view. I am not sure how to do this. I suspect it will be in:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
But how can I determine if the user is in edit mode or not?
UPDATE: Edit Mode is toggled via:
self.navigationItem.rightBarButtonItem = self.editButtonItem;