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.
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
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"
}