I have a UITableViewController built into the UINavigationController. This tableView is an instance of NSFetchedResultsController. I need to add a toolbar between the top NavigationController and TableViewController, but I cannot figure out how to do this (I don't even know if this is possible). I want to do something like Apple with their WWDC application (except that they don't have a TableViewController built into the NavigationController). I need to have some controls in the panel to control the NSFetchedResultsController.
Some people have suggested people with similar problems use UITableView instead of TVC, but I need to have TVC as an instance of NSFetchedResultsController.
Any ideas on how to do this? Should I do this programmatically? If so, how?
By the way, I aimed at iOS6 + with pivot files and ARC.

source share