更改标签栏图标颜色 iOS 5

发布于 2024-12-10 20:56:42 字数 298 浏览 2 评论 0原文

我可以使用以下命令重新设置 UITabBar 的样式,

[[UITabBar appearance] setSelectionIndicatorImage:
 [UIImage imageNamed:@"tab_select_indicator"]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];

但是在未选择选项卡时如何设置 imageTintColor 。默认颜色是灰色,我想将其更改为蓝色。

谢谢

I am able to restyle the UITabBar with the following commands

[[UITabBar appearance] setSelectionIndicatorImage:
 [UIImage imageNamed:@"tab_select_indicator"]];
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];

But how can I set the imageTintColor when the tab isn't selected. The default color is grey and I want to change this to blue.

Thanks

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

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

发布评论

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

评论(2

一抹苦笑 2024-12-17 20:56:42

来自 Apple 文档 UITabBar 类参考:

如果您还想自定义未选定的图像外观,则必须将 setFinishedSelectedImage:withFinishedUnselectedImage: 发送到各个选项卡栏项目。

From the Apple docs UITabBar Class Reference:

If you want to also customize the unselected image appearance, you must sent setFinishedSelectedImage:withFinishedUnselectedImage: to individual tab bar items.

懵少女 2024-12-17 20:56:42

在AppDlegate.m中

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];
return YES;
}

In AppDlegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
[[UITabBar appearance] setSelectedImageTintColor:[UIColor redColor]];
return YES;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文