Change the color of iOS Navigation Bar

前端 未结 9 2054
挽巷
挽巷 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:39

    For changing the navigation bar theme color throughout the full app you can do this by using UiNavigation bar appearance.

    UINavigationBar.appearance().barTintColor = UIColor.redColor()
    

提交回复
热议问题