Skip to content

Instantly share code, notes, and snippets.

@eventomer
Created November 26, 2013 12:19
Show Gist options
  • Save eventomer/7657464 to your computer and use it in GitHub Desktop.
Save eventomer/7657464 to your computer and use it in GitHub Desktop.
hex value to UIColor macro
#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
//example use: self.view.backgroundColor = UIColorFromRGB(0xD2691E);
@davidkatz
Copy link

Why do we need that? I'm ok with defining colors in native Objective-C. What's the downside of the current implementation?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment