Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

sergio27

macrumors member
Original poster
Nov 2, 2008
35
1
When adding more than five view controllers in a Tab Bar Controller, the iPhone SDK automatically adds a "More..." tab to organize them.

I found that Tab Bar Controller has a moreNavigationController property, and I changed the tint, but I would like to change the title from "More" to "Más", in Spanish, as in the "Music" app from Apple. Is that possible? Thank you.
 
Yes, it is possible. Look at those two lines. They should help you.

UINavigationBar *moreNavigationBar = tabBarController.moreNavigationController.navigationBar;
moreNavigationBar.topItem.title = @"Your description";

tabBarController is your UITabBarController
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.