There is a Highlight Tint option in Interface Builder for UIButton. Is it possible to change it programmatically for all UIButton in iOS 5….using some kind of appearance protocol thing or some other workaround?
There is a Highlight Tint option in Interface Builder for UIButton . Is it
Share
You can set it as
This is equivalent to hightlight tint option in IB and is applied only for highlighted state.
Update:
In order to implement this for all the buttons in app, use this:
It will set for all the
UIButtonwhich you are going to use in your app.Check this for more details on UIAppearance protocol.