我在界面构建器中将视图控制器添加到我的UITabBarController中。如何添加图片并以编程方式更改项目标题?
答案 0 :(得分:3)
你可以在appDelegate.m文件中的'applicationDidFinishLaunching:'函数中添加它们。
例如:
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 ++;
}