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.
|
|
|
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:
|
|||
|
|
|
In iOS 5 you can do these: For Navigation Bar:
For TabBar
Just put these codes in EDIT: To make app level selection color of tableView cell, you can create a custom |
||||
|
|