views:

123

answers:

1

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).

+3  A: 

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.

Ben S
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