Skip to content

Instantly share code, notes, and snippets.

@madninja
Created December 23, 2011 17:13
Show Gist options
  • Save madninja/1514810 to your computer and use it in GitHub Desktop.
Save madninja/1514810 to your computer and use it in GitHub Desktop.
UIColor+RGBExtensions
static __inline UIColor *RGBXA(NSUInteger rgb, CGFloat alpha)
{
return [UIColor colorWithRed:((float)((rgb & 0xFF0000) >> 16))/255.0
green:((float)((rgb & 0xFF00) >> 8))/255.0
blue:((float)(rgb & 0xFF))/255.0
alpha:alpha];
}
static __inline UIColor *RGBX(NSUInteger rgb)
{
return RGBXA(rgb,1.0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment