gpt4 book ai didi

ios - 如何根据TabBar selected index设置tint color?

转载 作者:行者123 更新时间:2023-11-28 22:16:11 26 4
gpt4 key购买 nike

我想根据标签栏的选定索引更改 tintColor 属性。我现在使用的代码不起作用,所有的标签栏 View 都有这段代码:

- (void)viewDidAppear:(BOOL)animated{

switch (self.tabBarController.selectedIndex) {
case 0:
self.tabBarController.tintColor = [UIColor colorWithRed:147/255 green:22/255 blue:0/255 alpha:1.0];
break;

case 1:
self.tabBarController.tintColor = [UIColor whiteColor];
break;

case 2:
self.tabBarController.tintColor = [UIColor greenColor];
break;

default:
break;
}
}

最佳答案

您不需要这样做;相反,将其放入包含的 Controller 的 viewWillAppear: 方法中:

Controller 1:

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.tabBarController.tabBar.tintColor = [UIColor blueColor];
}

Controller 2:

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.tabBarController.tabBar.tintColor = [UIColor yellowColor];
}

这假设 iOS5+。希望这会有所帮助。

关于ios - 如何根据TabBar selected index设置tint color?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21609712/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com