修改uitabbarcontroller项的标题和图标

时间:2012-03-17 09:05:09

标签: iphone ios5 interface-builder tabbarcontroller

如何修改TabBarController项目的标题和图标? 可以直接在Interface Builder中使用吗?

1 个答案:

答案 0 :(得分:12)

代码:

UITabBarItem *tabBarItem = [[UITabBarItem alloc] initWithTitle:@"Fancy Tab" image:[UIImage imageNamed:@"FancyTab"] tag:1];
myViewController.tabBarItem = tabBarItem; // to set the tabBarItem from outside the viewController
self.tabBarItem = tabBarItem;             // to set the tabBarItem from inside the viewController
常规.xib中的

:单击tabBarController中的项目。然后再次单击它。您现在可以在属性检查器中编辑标题和图标。

故事板中的

:单击viewController中连接到tabBarController的项目(不在tabBarController本身中)。这一次点击就足够了。并在属性检查器中设置标题和图标。

enter image description here