Hi all,
I have a tab bar app that has to display in different languages depending on a user's preference but I can't find much info on how to change the tab names at run-time. I need the tabs to show the correct names at startup, not when the tabs are accessed.
Best info I could find was running
self.tabBarController.selectedIndex = 1;
tabBarController.selectedViewController.tabBarItem.title = @"Tab Name";
from the app delegate but this first makes the tab active & then sets the name.
Is there not a better way to set tab names at run-time? Ideally I'd like to set them all in one go.