我有一个名为"theImageView"的UIImageView,UIImage为单色(透明背景),就像下面的左黑心一样.如何根据iOS 7+导航栏图标中使用的色调方法在iOS 7或更高版本中以编程方式更改此图像的色调?
这种方法也适用于Apple Watch应用程序的WatchKit吗?

如何更改iOS 7标签栏上的非活动图标/文本颜色?灰色的那个.

我有标签栏,我想将图标颜色从默认灰色更改为白色,我在 AppDelegate 中添加了这一行
UITabBar.appearance().barTintColor = UIColor(red:0.51, green:0.39, blue:0.37, alpha:1.0)
Run Code Online (Sandbox Code Playgroud)
这是更改selected项目,我如何在未选择的情况下执行此操作?
我试图更改未选中的UITabBarItems的默认灰色.我设法改变了文本而不是图像.

TabBar.appearance().barTintColor = UIColor(red: 86.0/255.0, green: 132.0/255.0, blue: 208.0/255.0, alpha: 1.0)
var normalTint: UIColor = UIColor.whiteColor()
TabBar.appearance().tintColor = UIColor.whiteColor()
UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: normalTint,NSFontAttributeName: UIFont(name: "Arial", size: 13)!], forState: UIControlState.Normal)
Run Code Online (Sandbox Code Playgroud)