UITabBar
默认的前景色是蓝色,背景是半透明的白色。为了配合app的主题颜色,我们需要修改这两个颜色值。如图:
背景色可以在IB上直接改(注意:是Bar Tint项而不是Background项)
前景色需要在代码中改
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
UITabBar.appearance().tintColor = UIColor.whiteColor()
return true
}