更改标签栏图标颜色 iOS 5
我可以使用以下命令重新设置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 Apple 文档 UITabBar 类参考:
From the Apple docs UITabBar Class Reference: