How to change UITabBarController More button's title?
iphone, uitabbar, uitabbarcontroller
Solution
The label under the "More" button is localized for you based on the user's current Locale as specified in their Settings. However, you have to declare your support for that locale in your app's Info.plist.
Add the `CFBundleLocalizations` key to your application's Info.plist and set its value to an array whose values are the locales for which you want the app to automatically localize system labels. For example, if you want to localize for both English and Japanese, you would add the following entry to the Info.plist:
<key>CFBundleLocalizations</key>
<array>
<string>en</string>
<string>ja</string>
</array>
Problem
I have a Tab Bar app. The app has 8 UITabBarItems and the More button is added automatically. I want to change the title from More to something else. I have already tried the following: ``` tabbarController.moreNavigationController.tabBarItem.title=@"Test"; ``` But it still displays "More". No error. No changes. How can I change the "More" text to another?