Skip to content

Instantly share code, notes, and snippets.

@Ashton-W
Created January 20, 2015 06:30
Show Gist options
  • Save Ashton-W/5a6732de57004e08e959 to your computer and use it in GitHub Desktop.
Save Ashton-W/5a6732de57004e08e959 to your computer and use it in GitHub Desktop.
nice inline function for hex to UIColor
NS_INLINE UIColor *UIColorFromHex(int hex)
{
return [UIColor colorWithRed:((CGFloat)((hex & 0xFF0000) >> 16)) / 255.0f
green:((CGFloat)((hex & 0x00FF00) >> 8)) / 255.0f
blue:((CGFloat)((hex & 0x0000FF) >> 0)) / 255.0f
alpha:1.0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment