Modify item "More" Tab Bar ios swift

3

I have made an app with Tab Bar and when I implement more than 6 items it automatically creates the "More" item.

How do I modify the title "More" and what else is in English ?. Attached Images.

    
asked by Rafa Pinto 16.05.2016 в 23:17
source

1 answer

3

First of all a recommendation: the UITabBar is thinking to have a maximum of 5 items. If you need many more, perhaps you should rethink the design of the application to accommodate everything in a simpler way for the user. I can assure you that users will not understand where the tabs of More

are

Having said that, you can do the following to change the title of the last tab:

if let viewController = tabController.viewControllers?[4] {
    viewController.tabBarItem.title = "Título del tab"
}
    
answered by 16.05.2016 / 23:43
source