如何更改选项卡项目的突出显示颜色?

发布于 2024-12-07 14:40:11 字数 146 浏览 1 评论 0原文

我正在尝试更改 tabBarItem 的突出显示颜色,就像 Viber 应用程序一样。我不想改变所有栏的颜色,只想改变突出显示的颜色。

我在这里阅读了很多帖子,但没有一个解释如何仅进行此修改。

有人知道该怎么做吗?有很多应用程序都可以自定义颜色!

I am trying to change the highlighted color of the tabBarItem just like the Viber app does. I don't want to change the color of all the Bar, just the highlighted color.

I have read a lot posts here, but none of them explained how to do only this modification.

Does someone know how to do this? There is many apps that have customized colors!

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

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

发布评论

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

评论(2

呆° 2024-12-14 14:40:11

目前,在 iOS4 中,标准 UITabBar 无法进行此类自定义。大多数具有自定义 UITabBar 的应用程序实际上都是创建自己的。查看CocoaControls,了解一些您可以使用的第三方解决方案。

Currently, with iOS4, this type of customization is not possible with a standard UITabBar. Most applications that have customized UITabBars actually create their own. Check out CocoaControls for some drop in third-party solutions you could use.

最初的梦 2024-12-14 14:40:11

您是否尝试过:

UIView *bg = [[[UIView alloc] initWithFrame:CGRectMake(0,0,320,49)] autorelease];
[bg setBackgroundColor:[UIColor redColor]];
[self.tabBarController.tabBar insertSubview:bg atIndex:1];

该代码最初为 tabBar 创建一个背景视图并将其颜色设置为红色。

Have you tried:

UIView *bg = [[[UIView alloc] initWithFrame:CGRectMake(0,0,320,49)] autorelease];
[bg setBackgroundColor:[UIColor redColor]];
[self.tabBarController.tabBar insertSubview:bg atIndex:1];

That code initially creates a background view for the tabBar and sets it's colour to red.

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