Can't change UINavigationBar prompt color

前端 未结 9 1556
-上瘾入骨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:14

    You may use

    for view in self.navigationController?.navigationBar.subviews ?? [] {
        let subviews = view.subviews
        if subviews.count > 0, let label = subviews[0] as? UILabel {
            label.textColor = UIColor.white
            label.backgroundColor = UIColor.red
        }
    }
    

    It will be a temporary workaround until they'll fix it

提交回复
热议问题