1,设置导航条背景颜色
self.navigationController?.navigationBar.barTintColor = UIColor.green
2,设置标题字体大小以及颜色
//标题颜色
self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor:UIColor.white,NSAttributedStringKey.font : UIFont.boldSystemFont(ofSize: 18)]
网友评论