I have a class that is of type UITableViewController
.
This class has a member of type UINavigationBar
that I use for adding in an edit button for the table view.
Using this method calling is invalid.
[self.navigationController pushViewController:controller];
How can I push a detail view onto the view after selecting a table row without wrapping my UITableViewController
in a UINavigationController
?