Hi Im trying to get my head around CGColor, Ive been doing a lot of Quartz2d stuff. In the past I've fudged it with [UIColor xColor].CGColor.... but with this new compiler I get crashes when i specify the color, ie [UIColor redColor].CGColor is fine but if I cook my own [UIColor color withRed: x Green:y etc].CGColor it crashes. I dont think its a retain issue because [UIColor alloc]initWithRed:].CGColor gives me the same thing. I'm guessing the UIColor -> CGColor bridge is kinda fudged, hard coded in for the preset colors only, not a conversion. And so I'm looking for an RGB type CGColor scheme so I can reconstruct a color from an array of values. I dont really care if its 0-1 or 1-255 etc, just need a system I can get my head around if anyone can throw me a bone I'd really appreciate it cheers
feedback
|
|
You can create it with CGColorRef CGColorCreateGenericRGB(CGFloat red,CGFloat green,CGFloat blue,CGFloat alpha); details here: http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Reference/CGColor/Reference/reference.html | |||
feedback
|
|
I expect what's really going on is you aren't retaining the resulting color, and you're letting the UIColor get autoreleased. The built-in colors (e.g. | |||
feedback
|