Seen this asked before but my example does not seem to work.
const CGFloat *toCol = CGColorGetComponents([[UIColor greenColor] CGColor]);
The array is empty from looking at it with GDB. Any hints?
|
Seen this asked before but my example does not seem to work.
The array is empty from looking at it with GDB. Any hints? | ||||
|
feedback
|
|
The code sample you provided should work. Try this:
| |||||||||
feedback
|
|
In iOS 5 you could use:
| |||
|
feedback
|
|
Just use memcpy:
| |||
|
feedback
|
|
This article helped me solve this problem or at least build the framework to solve it. http://developer.apple.com/iphone/library/qa/qa2007/qa1509.html | |||
|
feedback
|
|
Checkout uicolor-utilities. Seems like a very good library for doing this and many other useful things with UIColor. For example, with this library you could write:
| |||
|
feedback
|
|
Here's some more direct sample code for getting RGB components from a arbitrary color: | |||
|
feedback
|