I have two pieces of code, first fails the second works... can't see why.
UIColor _color = [UIColor blackColor];
NSString *something1 = [[_color CIColor] stringRepresentation]; //Fails NSString *something = [[CIColor colorWithCGColor:[_color CGColor]] stringRepresentation]; //works
Can anyone explain?