Can't change UINavigationBar prompt color

前端 未结 9 1555
-上瘾入骨i
-上瘾入骨i 2021-01-04 01:57

I am unable to change the prompt color on my navigation bar. I\'ve tried the code below in viewDidLoad, but nothing happens.

self.navigationCont         


        
9条回答
  •  春和景丽
    2021-01-04 02:07

    Try this out:->

    navController.navigationBar.titleTextAttributes = [NSAttributedStringKey.foregroundColor.rawValue: UIColor.red]
    

提交回复
热议问题