I do this in a UIViewController for one of my tabs:
self.title = @\"Welcome\";
However, it\'s overwriting whatever I have for the tabBarIte
Try:
[self setTitle:@"Welcome"]; UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@"Home" image:[UIImage imageNamed: image] tag:0]; [self setTabBarItem:item]; [item release];