将图片添加到UITabBar

时间:2009-05-04 09:14:13

标签: iphone cocoa-touch

我在界面构建器中将视图控制器添加到我的UITabBarController中。如何添加图片并以编程方式更改项目标题?

1 个答案:

答案 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 ++;
}