Reputation: 2765
I'm working on an iphone application that has exactly 5 tab bar buttons.
I've created a custom tab bar and added 5 buttons to it, each with a separate view controller.
The buttons are showing fine, but the 5th view controller is not loading on 5th tab bar button press. This might be because the 5th button is supposed to be the "More" button. Is their some way to override it?
Upvotes: 0
Views: 739
Reputation: 35131
You can customize your tab bar to do so.
There're some exist ones, like the one below:
https://github.com/boctor/idev-recipes/tree/master/CustomTabBar
It works Excelent! And you'll see the screenshot that it use five tabs. :)
Upvotes: 1
Reputation: 69469
No the more button wil only show if you have more then 5 viewcontroller in the tabbarcontroller.
Upvotes: 2
Reputation: 55
AS per apple human interface guidelines if you have more than 4 tabs last tab is displayed as more tab and you can not alter it
Upvotes: 0