Skip to content

Instantly share code, notes, and snippets.

@baltpeter
Created May 3, 2014 22:49
Show Gist options
  • Save baltpeter/7b2ab1f7780b5bcf8a14 to your computer and use it in GitHub Desktop.
Save baltpeter/7b2ab1f7780b5bcf8a14 to your computer and use it in GitHub Desktop.
Use NSLog to output a UIColor
CGFloat red, green, blue, alpha;
[color getRed: &red
green: &green
blue: &blue
alpha: &alpha];
NSLog(@"red = %f. Green = %f. Blue = %f. Alpha = %f",
red,
green,
blue,
alpha);
// source: http://iphonedevsdk.com/discussion/comment/408722/#Comment_408722
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment