Jan
Jan

Reputation: 747

xcode4.2.1 - storyboard - Navigation controller - Title bar color

I am designing an app with storyboard with minimal coding. So, I am designing everything using views and buttons without the need for header files.

What is the easiest way to change the default blue title bar color to black with minimal coding?

Upvotes: 5

Views: 14471

Answers (3)

T.J.
T.J.

Reputation: 3960

Select "Navigation Controller > Navigation Bar" in the storyboard and use the attributes inspector.

enter image description here

Upvotes: 4

thommie
thommie

Reputation: 448

Select the nav controller in the left scene selector. enter image description here

And click on the "Style" drop down menu and select the one you want.

Upvotes: 30

Mick MacCallum
Mick MacCallum

Reputation: 130222

Add this to your Info.plist file

enter image description here

Upvotes: 3

Related Questions