I have six tabs and you need to show them without the "More" button. jomafer responds that setItemWidth does this. I called it in AppDelegate , but it did not work.
[[UITabBar appearance] setItemWidth:self.window.frame.size.width/6];
Then I called it above in the TabBarController viewDidLoad , but it still didn't work.
Even tried
[self.tabBar setItemWidth:self.window.frame.size.width/6]
But there are few, for example this , that say that I cannot use UITabBar . It's true?
ios xcode uitabbarcontroller uitabbar uitabbaritem
Nitish
source share