Skip to content

Instantly share code, notes, and snippets.

@garthhumphreys
Created March 30, 2012 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garthhumphreys/2252774 to your computer and use it in GitHub Desktop.
Save garthhumphreys/2252774 to your computer and use it in GitHub Desktop.
RGBColor Macro
/* rgb color */
#define RGBCOLOR(r,g,b) \
[UIColor colorWithRed:r/256.f green:g/256.f blue:b/256.f alpha:1.f]
/* rgb color with alpha (rgba) */
#define RGBACOLOR(r,g,b,a) \
[UIColor colorWithRed:r/256.f green:g/256.f blue:b/256.f alpha:a]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment