In my app delegate I have this:
UIColor* color = [UIColor colorWithRed:36/255.0f green:38/255.0f blue:56/255.0f alpha:1.0f];
[[UIBarButtonItem appearance] setTintColor:color];
I'd like to have another color set for the pressed state.
How do I achieve this without using a background image?