iOS 标签栏图标的默认 UIColor 是什么?

发布于 2025-01-02 19:31:53 字数 134 浏览 0 评论 0原文

我正在正确更改选项卡栏图标颜色,但有时我需要返回到默认的蓝色。调色板中的默认蓝色是什么? UIColor“青色”和“蓝色”都不是!谢谢

colorIcon = [UIColor greenColor];

I am changing properly tabbar icon color but I need sometimes to go back to default blue one. Which is the default blue color from palette? UIColor "cyan" and also "blue" are not! Thanks

colorIcon = [UIColor greenColor];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

几度春秋 2025-01-09 19:31:53

在更改选项卡栏图标的颜色之前,您可以保存当前颜色并使用该变量恢复原始颜色。

UIColor *originalColor = tabBar.selectedTintColor;
[tabBar setSelectedTintColor:[UIColor greenColor]];

恢复原来的颜色:

[tabBar setSelectedTintColor:originalColor];

Before you change the color of your tabbar icon, you could save the current color and use that variable to restore the original color.

UIColor *originalColor = tabBar.selectedTintColor;
[tabBar setSelectedTintColor:[UIColor greenColor]];

Restore your original color:

[tabBar setSelectedTintColor:originalColor];
⒈起吃苦の倖褔 2025-01-09 19:31:53

仔细看,你会发现颜色实际上是用一些蓝色和一些浅蓝色甚至白色进行褪色的。

请参阅:

在此处输入图像描述

Look carefully and you will see that the color actually is a color-fade using some blue and some light blue or even white.

See this:

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文