вы можете добавить их в функцию 'applicationDidFinishLaunching:' в файле appDelegate.m.
например:
NSInteger index = 0;
while(index < 4){ // 4 is the number of tabbar items
UINavigationController *navCtrlr = (UINavigationController*)[[tabBarController viewControllers] objectAtIndex:index];
UITabBarItem *tabBar = (UITabBarItem *) navCtrlr.tabBarItem;
if(index == 0){
tabBar.image = [UIImage imageNamed:@"home-item.png"];
tabBar.title = @"home";
}
...
index ++;
}