I have a UITableViewController where the user should be able to edit the items. In order to enable editing I use this :
UITableViewController
self.navigationItem.righ
Do you set the self.editing = YES when the edit button is tapped?
self.editing = YES
When in editing mode this method is called, instead of didSelectRow when you tap a row:
tableView:commitEditingStyle:forRowAtIndexPath:.