参考:http://blog.csdn.net/k12104/article/details/23999125
swift语法的写法:
ios7.0在故事板 tab bar 属性设置中设置 image tint颜色值可以实现,ios7.1中该方法不起作用,可以在代码中加入下句实现
self.tabBarController?.tabBar.selectedImageTintColor=UIColor.blackColor()
ios8中如下设置:
self.tabBar.tintColor=UIColor.blackColor()
原文链接:https://www.f2er.com/swift/325922.html