I Have an UITabbar app with an imbedded Navigation Controller which is loading table views.
I would like to add a mini toolbar beneath the navigation bar, with a segmented control to sort table data by group or by name.
I have tried this with interface builder, trying to add the toolbar to both the table view controller and the navigation controller, hooking up the toolbar to the files owner, but no matter what I try the toolbar won't show up.
I have tried in code using to create the toolbar in the UITableViewController, but the toolbar then scrolls with the table.
I have tried to unhide the toolbar in the navigation controller with...
[self.navigationController setToolbarHidden:NO];
and to setItems with an array to add buttons, but all I can get is a blank toolbar right above the tabbar.
Any help with this would be greatly appreciated.
Thanks.