You mix two scales: UIColour looks like it uses 0-1 floating-point values, while regular RGB values ββare 0-255. Instead you want
38 / 255 = 0.1491f 171 / 255 = 0.6706f 226 / 255 = 0.8863f
So
[CategoryLbl setTextColor:[UIColor colorWithRed:0.1491f green:0.6706f blue:0.8863f alpha:1.0f]]
There may be better ways to do this, for example. using values ββ0-255 - I don't know OSX / iPhone very well.
It actually looks like you can just do:
[CategoryLbl setTextColor:[UIColor colorWithRed:(38/255.f) green:(171/255.f) blue:(226/255.f) alpha:1.0f]]
which is easier to understand (although I gave you enough dp, the first one should be accurate).
Rup
source share