I have six tabs and need to show them all without More button.jomafer answer says that setItemWidth
does that. I called this in AppDelegate
but it didn't work.
[[UITabBar appearance] setItemWidth:self.window.frame.size.width/6];
I then called the above in TabBarController
viewDidLoad
but it still didn't work.
Even tried
[self.tabBar setItemWidth:self.window.frame.size.width/6];
But there are few like this which say that what I want is not possible using UITabBar
. Is this true?