views:

19

answers:

1

after i have add 6 or more tabbar on the InterfaceBuilder it will automatically generate More Tab. how to customize look and feel of it ? eg Navigation bar color. alt text

A: 

You can take a look at the moreNavigationController property of UITabBarController. It is a NavigationController, you cannot replace it but maybe you can change the color of the top bar.

MaxFish
how to access More Tabbar ?
RAGOpoR
UINavigationController * moreNav = tabBarController.moreNavigationController;
MaxFish