I can create a UINavigationController
with custom bar classes by using initWithNavigationBarClass:toolbarClass:
. There doesn\'t seem to be an equi
As far as I know you can't do this. Your best option to do this without IB is to have your own UIViewController (not subclassing UITabBarController) and then add your own subclass of UITabBar to that Controller.
You may also want to review the Controller Hierarchy if you decide to follow this approach.