Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is RGB and alpha value for clear color? i want to do it programmatic, don't need [UIColor clearColor]...??

share|improve this question
2  
Why can't you just use [UIColor clearColor], which itself is also programmatic? Why do you want to make life difficult for yourself? – BoltClock Mar 8 '11 at 10:49
I think it doesn't have RGB values. Instead it will get the color from its parent and set it. – SNR Mar 8 '11 at 10:53
coz i want to make more generalize prog. – ankur srivastasva Mar 9 '11 at 13:08

4 Answers

According to the Documentation:

"Returns a color object whose grayscale and alpha values are both 0.0."

share|improve this answer
Correct. It doesn't use the RGB colorspace. – hennes Mar 8 '11 at 11:15

Create a color object whose grayscale and alpha values are both 0.0

UIColor *clearColor = [UIColor colorWithWhite:0.0/255 alpha:0.0];
share|improve this answer

Just use [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0];

share|improve this answer

To represent clear color in rgb format one may use

'rgba(0,0,0,0)'

It just includes the alpha value.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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