Reputation: 773
I don't understand why the background color setting in the storyboard doesn't work for my navigation controller? (See picture)
I have here set it to bright red but as you can see it does nothing in the storyboard or to the app when I build it.
Any thoughts?
I know I can set the color programmatically, and this is what I am currently doing. However, it would be nice to see the changes in the storyboard so I don't have to build the app every time I make a color change to see the difference.
Upvotes: 3
Views: 3505
Reputation: 6475
Yes you can. Notice that you're changing UIView
properties not Navigation bar. Look at the screen below:
You have to set Bar Tint property.
Upvotes: 6