I was using the selectedImageTintColor
property in my TabBarController
to change the color of the selected TabBarItem
.
The problem is that the color you set as tintcolor
is not the final color applied, before it is changed (it gets some kind of gradient)
My question is, is it possible to find the color to apply as tintcolor
to obtain a final color you know?
For example, I want my selected item to have a final color of
[UIColor colorWithRed:(154.0/255.0) green:(213.0/255.0) blue:(0.0) alpha:(1.0)
What are the color RGBs I should set to the property selectedImageTintColor
?