Last active
December 14, 2015 21:28
-
-
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]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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