What is RGB and alpha value for clear color? i want to do it programmatic, don't need [UIColor clearColor]...??
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
According to the Documentation: "Returns a color object whose grayscale and alpha values are both 0.0." |
|||
|
|
|
Create a color object whose grayscale and alpha values are both 0.0
|
||||
|
|
|
To represent clear color in rgb format one may use
It just includes the alpha value. |
|||
|
|
[UIColor clearColor], which itself is also programmatic? Why do you want to make life difficult for yourself? – BoltClock♦ Mar 8 '11 at 10:49