To localize my tab bar items I have, in my AppDelegate, this code:
self.tabBarController = (UITabBarController*)self.window.rootViewController;
tabBarController.delegate = self;
tabBarController.selectedIndex = 0;
[[tabBarController.tabBar.items objectAtIndex:0] setTitle:NSLocalizedString(@"Home", nil)];
[[tabBarController.tabBar.items objectAtIndex:1] setTitle:NSLocalizedString(@"Requests", nil)];
[[tabBarController.tabBar.items objectAtIndex:2] setTitle:NSLocalizedString(@"Account", nil)];
[[tabBarController.tabBar.items objectAtIndex:3] setTitle:NSLocalizedString(@"Alarms", nil)];
[[tabBarController.tabBar.items objectAtIndex:4] setTitle:NSLocalizedString(@"Settings", nil)];
Now I've added another item and tried to add a new line with index = 5, but I get an "NSRangeException" because the index 5 is beyond bounds. Xcode added automatically the "More" section and moved my last two items (Settings and the new one) in there. I've also seen that the user can now customize the tab bar choosing the items order. So now how can I refer to all the items and localize them? Note: I'm using storyboards.
Thanks.