how to change navigationitem title color

前端 未结 11 1330
南旧
南旧 2021-01-30 12:35

I think all day to change the navigation Bar title color, but it doesn\'t work. this is my code:

var user: User? {
    didSet {
        navigationItem.title = us         


        
11条回答
  •  盖世英雄少女心
    2021-01-30 13:13

    Solution for iOS 13

    To customize the appearance of a navigation bar you need to use UINavigationBarAppearance:

    let appearance = UINavigationBarAppearance()
    appearance.titleTextAttributes = [.foregroundColor: UIColor.red]
    appearance.largeTitleTextAttributes = [.foregroundColor: UIColor.red]
    
    navigationItem.standardAppearance = appearance
    navigationItem.scrollEdgeAppearance = appearance
    

提交回复
热议问题