Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a option to set app level tint color for all the elements (UITableView, Navigation bar) etc ?

I would like to set at app level tint color so that any new element create to by default use default tint color.

share|improve this question

2 Answers

The new appearance API in iOS 5 allows for customization at the app-wide level. If you must support older OS versions, overriding drawRect in a subclass or method swizzling was the way to go.

To access the appearance API, simply use class +appearance, like so:

[[UINavigationBar appearance]setTintColor:[UIColor myAwesomeColor]];
share|improve this answer

In iOS 5 you can do these:

For Navigation Bar:

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

For TabBar

[[UITabBar appearance] setTintColor:[UIColor greenColor]];

Just put these codes in applicationDidFinishLaunching:

EDIT: To make app level selection color of tableView cell, you can create a custom UITableView class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.