如何修改TabBarController项目的标题和图标? 可以直接在Interface Builder中使用吗?
答案 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本身中)。这一次点击就足够了。并在属性检查器中设置标题和图标。