We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I coding, I usually define some color macros like this:
#define UIColor4i(r, g, b, a) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:(a)/100.0f] #define UIColor3i(r, g, b) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1.0f] #define UIColor4f(r, g, b, a) [UIColor colorWithRed:(r) green:(g) blue:(b) alpha:(a)]
and I used the "UIColor3i(255, 255, 255)" to set the color.
But I found that this plugin not supports those defines, so I modify it, and it works ok for those defines.
Could you add some color macros to quickly set colors?
Thank you very much to review.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I coding, I usually define some color macros like this:
and I used the "UIColor3i(255, 255, 255)" to set the color.
But I found that this plugin not supports those defines, so I modify it, and it works ok for those defines.
Could you add some color macros to quickly set colors?
Thank you very much to review.
The text was updated successfully, but these errors were encountered: