arnoapp
arnoapp

Reputation: 2486

Tint Color of Appstore TopBar

I like to use the same tint color that apple uses for its iOS6 Appstore top bar. enter image description here

But I can't manage to find out the right color. I tried a lot of colors but none of them was right.

Does anybody have a clue.

Upvotes: 0

Views: 95

Answers (1)

Thilina Chamath Hewagama
Thilina Chamath Hewagama

Reputation: 9040

You can do this by giving black as the navigation bar's tint color.(iOS5+ apps)

[[UINavigationBar appearance] setTintColor:[UIColor blackColor]];

Upvotes: 1

Related Questions