Created
April 28, 2011 13:01
-
-
Save sprohaszka/946300 to your computer and use it in GitHub Desktop.
UIColor Category for RGB with value from 0 to 255
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
| @implementation UIColor (RGB) | |
| + (UIColor*) colorIntWithRed:(int)red green:(int)green blue:(int)blue { | |
| return [UIColor colorWithRed:red/255.0f green:green/255.0f blue:blue/255.0f alpha:1.0f]; | |
| } | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment