PDA

View Full Version : Change title of the "More.." navigation controller




sergio27
Jul 23, 2009, 01:07 AM
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.



Szarlatan
Aug 11, 2009, 10:37 AM
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

sergio27
Aug 11, 2009, 01:24 PM
Thanks a lot! I'll try it later. =)