Change color of UINavigationBar

前端 未结 5 1046
囚心锁ツ
囚心锁ツ 2021-01-28 20:38

Hello,

I created UINavigationBar, and I try to change the color bar to aqua color (As in Nib file)

How do I do it?

5条回答
  •  既然无缘
    2021-01-28 20:57

    [self.navigationController.navigationBar setTintColor:[UIColor blueColor]];
    

    Call this function befor the ViewController will appear, e.g. in viewDidLoad:

提交回复
热议问题