I have a TabBarController with several UITabBarItems, the last of those items is the standard 'More' UITabBarItem provided by iOS. I want the title to be 'Meer' (More in my language), but when I try to set the title programmatically it doesn't work. I've tried this:
UITabBar *tabBar = self.tabBar;
UITabBarItem *chauffeurItem = [tabBar.items objectAtIndex:0];
UITabBarItem *voertuigItem = [tabBar.items objectAtIndex:1];
UITabBarItem *moreItem = [tabBar.items objectAtIndex:2];
chauffeurItem.title = @"Chauffeurs";
voertuigItem.title = @"Voertuigen";
moreItem.title = @"Meer";
This is in my TabBarController. The first two items do change.