在Xcode 5 Dev Preview 2中,我能够执行以下操作:
[[UITabBar appearance] setTintColor:[UIColor whiteColor]];
//所选图像和文字的颜色(白色)
在Xcode 5 Dev Preview 3中,同一行代码抛出异常(见下文)。异常表明我可能想要使用'barTintColor
' - 但我没有 - 因为这是整个UITabBar的颜色。如何在UITabBar中设置所选图像和文本的颜色?
Xcode 5 Dev Preview 3中的新例外:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-setTintColor: is not allowed for use with the appearance proxy. Perhaps you want to use the barTintColor property.'
谢谢
答案 0 :(得分:18)
我没有看到最新的Xcode 5(5.0.2),但我知道您想要调用不同的方法来设置所选的图像色调颜色,具体取决于您是在iOS 6还是7上运行这是我的一个应用程序的一些示例代码:
if ([RFSUtilities isIOS7OrHigher])
{
[[UITabBar appearance] setTintColor:[UIColor whiteColor]];
}
else
{
[[UITabBar appearance] setSelectedImageTintColor:[UIColor whiteColor]];
}
+[RFSUtilities isIOS7OrHigher]
只是通过the proper version check检查我们是否在iOS 7或更高版本上运行:
+ (BOOL)isIOS7OrHigher
{
float versionNumber = floor(NSFoundationVersionNumber);
return versionNumber > NSFoundationVersionNumber_iOS_6_1;
}
希望这有帮助!
答案 1 :(得分:3)
只需在tintColor
类的用户定义运行时属性中添加颜色类型为UITabBar
。
仍在寻找非活动标签的类似方法......任何人都知道吗?