I have ARC
enabled and I'm trying to do:
CGColorRef outerColor = (id)[UIColor colorWithWhite:1.0 alpha:1.0].CGColor;
My attempted cast results in the error:
Implicit conversion of an Objective-C pointer to 'CGColorRef' (aka 'struct CGColor *') is disallowed with ARC
I've tried a number of things, but I don't know how to complete this cast.