I have a UITableView. The left nav item is a edit button item. Whenever I click the edit button and try to click the done button to stop the editing, it won't do anything. What could be wrong? It was working fine not too long ago. What might I have deleted by accident? Here's my set editing method:
Code:
- (void)setEditing:(BOOL)editing animated:(BOOL)animated {
[super setEditing:editing animated:animated];
self.navigationItem.rightBarButtonItem.enabled = !editing;
}