I have a UILabel with black color;
i am writing the following code to get black color\'s components.
UIColor *aColor = [aLabel.textColor retain]; con
One way to get RGB for these is by drawing the color into a graphics context and reading the color back out. See my answer to this question for example code:
Get RGB value from UIColor presets