I faced a problem that I can not find a way to change the text of “More” bar item in the tab bar, just like what I can do on other tab bar items. After searching the forum, I only find a way to change the title of the “More” view pushed by “More” button. Can anyone help me out? Thanks in advance.
UINavigationBar *moreNavigationBar = tabBarController.moreNavigationController.navigationBar;
moreNavigationBar.topItem.title = @"More Features";
If you are using the default ‘More’ tab, you won’t be able to change that. Apple handles all of the code for this tab behind the scenes. It is designed to give the user the ability to rearrange the order of tabs when you have too many to show in your tab bar controller.
My suggestion would be to not fight this and try to override the ‘More’ functionality. If you would like a tab called ‘More’, but want to handle that functionality yourself, then don’t use Apple’s built in More tab, just find a suitable icon and handle things yourself. Hope this helps.