Skip to content

Instantly share code, notes, and snippets.

@maddiesch
Created November 10, 2014 23:50
Show Gist options
  • Save maddiesch/0b8dbc4d2c6c4a806a8a to your computer and use it in GitHub Desktop.
Save maddiesch/0b8dbc4d2c6c4a806a8a to your computer and use it in GitHub Desktop.
int32_t hex = 0x2578CB;
[[UIColor alloc] initWithRed:(((hex >> 16) & 0xFF) / 255.0) green:(((hex >> 8) & 0xFF) / 255.0) blue:((hex & 0xFF) / 255.0) alpha:1.0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment