Change the color of iOS Navigation Bar

前端 未结 9 2116
挽巷
挽巷 2020-12-07 13:57

I\'m trying to change the color of my navigator bar but I found that it\'s only impossible if the navigator is the root one.

I\'m trying this:

self.n         


        
9条回答
  •  误落风尘
    2020-12-07 14:35

    Swift 4.2:

        //To change Navigation Bar Background Color
        UINavigationBar.appearance().barTintColor = UIColor.blue
        //To change Back button title & icon color
        UINavigationBar.appearance().tintColor = UIColor.white
        //To change Navigation Bar Title Color
        UINavigationBar.appearance().titleTextAttributes = [NSAttributedString.Key.foregroundColor: UIColor.white]
    

    Swift 3.x:

    //To change Navigation Bar Background Color
    UINavigationBar.appearance().barTintColor = UIColor.blue
    //To change Back button title & icon color
    UINavigationBar.appearance().tintColor = UIColor.white
    //To change Navigation Bar Title Color
    UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName: UIColor.white]
    

提交回复
热议问题