Skip to content

Instantly share code, notes, and snippets.

@masbog
Last active December 14, 2015 21:28
Show Gist options
  • Save masbog/5150926 to your computer and use it in GitHub Desktop.
Save masbog/5150926 to your computer and use it in GitHub Desktop.
macro objective-c for fast generate [UIColor colorWithRed:r green:g blue:b alpha:a]
#define RGB(r, g, b) \
[UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1]
#define RGBA(r, g, b, a) \
[UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:(a)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment