gpt4 book ai didi

ios - UITabBar所选项目的色调颜色

转载 作者:行者123 更新时间:2023-12-01 18:42:46 25 4
gpt4 key购买 nike

我正在研究UITabBar-Application。

我想更改所选的项目颜色

[[UITabBar appearance] setTintColor:[UIColor redColor]]

这将起作用,直到我想使用以下方式设置TabBar的背景色
[[UITabBar appearance] setBarTintColor:[UIColor blueColor]]

然后,栏为蓝色,但突出显示的项目为灰色。
[[UITabBar appearance] setBackgroundColor:[UIColor blueColor]]

没有效果。
任何的想法?
非常感谢你!

最佳答案

您发布的代码似乎正在运行。您也可以对图像进行处理。尝试这个:

[tabBarItem1 setImage:[[UIImage imageNamed:@"home.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
[tabBarItem1 setSelectedImage:[[UIImage imageNamed:@"home_selected.png"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];

// Change the tab bar background
UIImage* tabBarBackground = [UIImage imageNamed:@"tabbar.png"];
[[UITabBar appearance] setBackgroundImage:tabBarBackground];
[[UITabBar appearance] setSelectionIndicatorImage:[UIImage imageNamed:@"tabbar_selected.png"]];

关于ios - UITabBar所选项目的色调颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40652052/

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