Skip to content

Instantly share code, notes, and snippets.

@oxUnd
Created January 16, 2014 13:59
Show Gist options
  • Save oxUnd/8455441 to your computer and use it in GitHub Desktop.
Save oxUnd/8455441 to your computer and use it in GitHub Desktop.
rgb to hex
- (NSString *) rgbToHex: (NSColor*) color {
NSString *hexColor = [NSString stringWithFormat:@"#%02X%02X%02X",
(int) ([color redComponent] * 0xFF),
(int) ([color greenComponent] * 0xFF),
(int) ([color blueComponent] * 0xFF)
];
return hexColor;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment