0
我有視圖控制器添加到我的UITabBarController在界面生成器。如何以編程方式添加圖片並更改項目標題?添加圖片到UITabBar
我有視圖控制器添加到我的UITabBarController在界面生成器。如何以編程方式添加圖片並更改項目標題?添加圖片到UITabBar
你可以在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 ++;
}