Change iOS 11 large title color

前端 未结 5 1566
时光取名叫无心
时光取名叫无心 2021-01-05 11:41

I\'m using the new enlarged navigation bar titles in iOS 11. But I can\'t seem to be able to change the textColor.

I tried doing:

self.navigationCont         


        
5条回答
  •  情话喂你
    2021-01-05 11:56

    Swift 4.2

    self.navigationController?.navigationBar.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor : UIColor.white]
    

    with named color

    self.navigationController?.navigationBar.largeTitleTextAttributes = [NSAttributedString.Key.foregroundColor : UIColor(named: "Teal") ?? UIColor.black]
    

提交回复
热议问题