色を直接使用すると機能します。しかし、色の値を RGB とアルファで保存したい場合は機能しません。何も描きません。
UIColor *aaa = [UIColor grayColor];
float r,g,b,a;
[aaa getRed:&r green:&g blue:&b alpha:&a];
aaa = [UIColor colorWithRed:r green:g blue:b alpha:a];
CGColorRef col = aaa.CGColor;
RGB を保存するにはどうすればよいですか?