Change color of UINavigationBar

前端 未结 5 1007
囚心锁ツ
囚心锁ツ 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:49

    [[UINavigationBar appearance] setTintColor:[UIColor colorWithRed:0 green:.62 blue:.984 alpha:1]];
    

    Dude, try this to get [UIColor Aqua] throughout your app.

提交回复
热议问题