What is the simplest way to set the TabBar height?
I though about adding just a toolbar with buttons, but how do I then navigate between the ViewControllers if not modally? I want to replicate the exact TabBarController behaviour but with a custom height and buttons.
Thanks!
You can not change the size of a tabBar. You will have to roll your own. Have a look at container UIViewControllers http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006926-CH3-SW81
Essentially you will create your own TabBarController that will have your own tabBar on the bottom and you will have children viewControllers that you will show when the buttons are pressed.