I must be doing stupid, but I can't see what: my UITableViewController
subclass is never called when the edit button of my navigation is pressed.
What could be causing that?
My view hierarchy is loaded from a Nib file and put inside a popover. The [+] button is connected to the insertNewObject
action of my UITableViewController
subclass. It works fine.
The [Edit] button however has no action to connect to. The doc says it will automatically call the setEditing:animated:
method of the view controller, which I override.
The nib file is set up pretty much as usual AFAICT. And in fact, I'm not sure what additional detail I can give that would suggest my mistake.
What is the control flow from the click on the [Edit] button to the call of the setEditing:animated
method?