swift4.2 设置导航条 背景色 标题字体颜色以及字体大小
2019-01-07 本文已影响0人
奋斗的小马达
1,设置导航条背景颜色
self.navigationController?.navigationBar.barTintColor = UIColor.green
2,设置标题字体大小以及颜色
//标题颜色
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white,NSAttributedStringKey.font : UIFont.boldSystemFont(ofSize: 18)]