前端之家收集整理的这篇文章主要介绍了
Swift 设置navigationbar属性相关,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//设置导航栏颜色
let mainColor = UIColor(red: 0.92,green: 0.25,blue: 0.24,alpha: 1)
self.navigationController?.navigationBar.barTintColor = mainColor
self.navigationController?.navigationBar.tintColor = UIColor.whiteColor()
//设置标题颜色
let navigationTitleAttribute : NSDictionary = NSDictionary(object: UIColor.whiteColor(),forKey: NSForegroundColorAttributeName)
self.navigationController?.navigationBar.titleTextAttributes = navigationTitleAttribute as? [String : AnyObject]
原文链接:https://www.f2er.com/swift/325131.html