I have a TabBarController set as main controller tab, where names were defined using interface builder. Now I would like to change its names programmatically.
How c
This is how you can change the name and the image of the icon of a tab bar:
self.tabBarItem = [[[UITabBarItem alloc] initWithTitle:@"Main Tab" image:[UIImage imageNamed:@"maintab.png"]] autorelease];