Change the color of iOS Navigation Bar

前端 未结 9 2086
挽巷
挽巷 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()
    
    0 讨论(0)
  • 2020-12-07 14:40

    For black nav bar try this:

    navigationController?.navigationBar.barStyle = .black
    
    0 讨论(0)
  • 2020-12-07 14:46
    self.navigationController.navigationBar.barTintColor = [UIColor blackColor];
    
    0 讨论(0)
提交回复
热议问题