Im creating a color object using the following code.

curView.backgroundColor = [[UIColor alloc] initWithHue:229 saturation:40 brightness:75 alpha:1];

How can I retrieve RGB values from the created color object?

link|improve this question
possible duplicate of Extracting rgb from UIColor – Roddy Jun 28 '11 at 9:19
Just a note, the parameters passed into the method -initWithHue:saturation:brightness:alpha: should all be between 0.0 and 1.0. – geekinit Sep 4 '11 at 4:58
feedback

3 Answers

up vote 24 down vote accepted
const float* colors = CGColorGetComponents( curView.backgroundColor.CGColor );

These links provide further details:

link|improve this answer
Answer below should have been a comment. Oops. – defmech Jan 12 '09 at 22:36
Note: this only works for colors in the RGB space. For example, this will not work on [UIColor whiteColor] as that is not in RGB. – Jason Feb 15 '10 at 22:06
I posted some sample code in this question to get this working in non-RGB contexts: stackoverflow.com/questions/4700168/… – Jesse Rusak Jan 15 '11 at 15:28
feedback

In iOS 5 you could use:

CGFloat red = 0.0, green = 0.0, blue = 0.0, alpha =0.0;
[multipliedColor getRed:&red green:&green blue:&blue alpha:&alpha];
link|improve this answer
This is supported only in iOS 5.0 or newer. – Jon Trauntvein Dec 12 '11 at 15:14
feedback
const float* colors = CGColorGetComponents( curView.backgroundColor.CGColor );

Thanks. I had to add the const at the start of the line as it was generating a warning.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.