vote up 0 vote down star

Is there any way to increase the number of items in the iphone tab bar beyond five? I know that it can create a "More..." tab, but it seems excessive for just one more tab.

I have an app which needs six (Alternatively I will have to do some deep meditation to get rid of one).

flag

80% accept rate

1 Answer

vote up 3 vote down check

No. This is a hard coded limit in the UITabBarController class. The View Controller Programming Guide makes several references to only being able to display 5 tabs at a time.

If you really want this functionality, you'll have to create a replacement to UITabBarController yourself.

link|flag
Instead of creating the standard "More" tab or a tabBar replacement he may also want to group two related tabs together with a custom made "More" view, it will avoid the plain tableView and could provide a better user experience. – jessecurry Nov 6 at 18:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.