Search code examples
ioslocalizationuitabbar

How to change the text of the ios "more" button into the version in my language?


in my ios app i have a tabbar containing a lot of button. Some of them are after the "More" button. There's a way to change the text of the "more" button to "altro" that is "more" in my language?


Solution

  • the properties title and image of a UITabBarItem provided by the system can not be changed, as the documentation says:

    Discussion

    This method returns a system-supplied tab bar item. The title and image properties of the returned item cannot be changed later.

    This value be will automatically localized to the correct language by the operating system. If you need to change this you will have to create the item, and its functionality, by yourself.