要设置背景颜色,请使用此代码
self.navigationController?.setBackgroundColor(UIColor.blue)
要更改文本和字体,请使用此代码
UINavigationBar.appearance().largeTitleTextAttributes =
[NSAttributedStringKey.foregroundColor:UIColor.blue,
NSAttributedStringKey.font:UIFont.boldSystemFont(ofSize: 22)]
试试这个