I have a standard app with a navigation controller managing several UITableViewController classes.
I want to add a UITabBar to the root view (a UITableViewController) to manage filtering the selection of objects showin in the UITableView.
I dont want/need a UITabBarController. The UITabBar is only for functionality and UI (radio-button style selection and familiar tabbar UI). I just want to manually create a UITabBar and add it to my view anchored/locked to the very bottom of the screen like is the case when using UITabBarControllers.
My main problem is I can't figure out what I should be adding the UITabBar as a subview too.
I dont want to add it to the controllers self.tableView because then it would be achored to the bottom of the scrolling TableView and not always visible on the bottom of the screen.
I also tried adding to the view.tableView.superview but that didnt seem to work as well.
Any help, or am I completely doing this "filtering of tableview data the wrong way" and should be using something else instead?