1

我在更改标签栏颜色时遇到了麻烦,因为我没有使用 xib 文件,而且不知何故我的代码结构根本没有帮助我,告诉我是否需要从头开始重写整个事情,但是我会非常如果我不需要的话,我会很感激^_^

这是我的单视图应用程序的 appDelegate 文件,在这里我创建了带有与每个选项卡关联的导航栏的选项卡栏,然后显示它们

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window makeKeyAndVisible];

self.firstTab = [[FirstTab alloc] initWithNibName:nil bundle:NULL];
self.firstNavigationController = [[UINavigationController alloc] initWithRootViewController:self.firstTab];
self.thirdTab = [[ThirdTab alloc] initWithNibName:nil bundle:NULL];
self.thirdNavigationController = [[UINavigationController alloc] initWithRootViewController:self.thirdTab];
self.tab2 = [[newsecViewController alloc] initWithNibName:@"newsecViewController" bundle:NULL];
self.tab2NavigationController = [[UINavigationController alloc] initWithRootViewController:self.tab2];
self.tab2.view.backgroundColor = [UIColor purpleColor];



//NSArray *tabs = [[NSArray alloc] initWithObjects:self.firstTab, self.secondTab, self.thirdTab, nil];
NSArray *tabBars = [[NSArray alloc] initWithObjects:self.firstNavigationController, self.tab2NavigationController, self.thirdNavigationController, nil];
self.tabBarController = [[UITabBarController alloc] init];
[self.tabBarController setViewControllers:tabBars];
[self.window addSubview:self.tabBarController.view];

这是我的一个标签的代码示例

self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if(self != nil) {
    self.title = @"Second";
    self.tabBarItem.image = [UIImage imageNamed:@"triangle.png"];

}
return self;

感谢你的帮助...

4

2 回答 2

1

使用 tabbar 的 tintColor 属性。它在 iOS 5.0 及更高版本中可用。

[tabBarController.tabBar setTintColor:[UIColor purpleColor]];
于 2013-10-25T20:04:14.110 回答
1

从 iOS 7 开始,设置颜色UINavigationBarUITabBar使用barTintColor属性时。

[self.tabBarController.tabBar setBarTintColor:[UIColor purpleColor]];
于 2013-10-25T21:02:59.270 回答