The quickest way to get started with EDColor
is with CocoaPods, but otherwise you can add the EDColor
directory to your project and...
#import "EDColor.h"
This will automatically bring in all of the various categories and classes that make up the library. Alternatively, if you only need the functionality from a single part of EDColor
, you can just import that specific header as the library was designed to be completely modular and (thus) decoupled.
UIColor *green = [UIColor colorWithHex:0x00FF00];
UIColor *blue = [UIColor colorWithHex:0x0000FF andAlpha:0.5f];
UIColor *gray = [UIColor colorWithHexString:@"#CCC"];
UIColor *red = [UIColor colorWithRed:1.0f green:0.0f blue:0.0f alpha:1.0f];
UIColor *blue = [red offsetWithHue:-0.56f saturation:0.0f brightness:0.0f alpha:0.0f];
UIColor *red = [UIColor colorWithRed:1.0f green:0.0f blue:0.0f alpha:1.0f];
UIColor *pink = [red offsetWithHue:0.0f saturation:0.0f lightness:0.82f alpha:0.0f];
UIColor *red = [UIColor colorWithRed:1.0f green:0.0f blue:0.0f alpha:1.0f];
UIColor *brighterRed = [red offsetWithLightness:15.0f a:0.0f b:0.0f alpha:0.0f];
Because crayons are fun! Full list of colors: http://en.wikipedia.org/wiki/List_of_Crayola_crayon_colors
UIColor *mint = [UIColor colorWithCrayola:@"Magic Mint"];
UIColor *blue = [UIColor colorWithCrayola:@"Midnight Blue"];
UIColor *rorange = [UIColor colorWithCrayola:@"Orange Red"];
Some of the iOS7 colors from ios7colors.com.
UIColor *yellow = [UIColor iOS7yellowColor];
UIColor *greenGradientStart = [UIColor iOS7greenGradientStartColor];
UIColor *greenGradientEnd = [UIColor iOS7greenGradientEndColor];
Install CocoaPods with gem install cocoapods
. Run pod install
. Open EDColor.xcworkspace.
The test suite for EDColor
is built using OCUnit. To run the test suite, simply open the project in Xcode and choose "test" from the Product menu. Please run and augment the tests prior to submitting a pull request.
EDColor is tested on iOS 5 and up. Older versions of iOS may work but are not currently supported.
EDColor is built using ARC. If you are including EDColor in a project that does not use Automatic Reference Counting (ARC), you will need to set the -fobjc-arc
compiler flag on all of the EDColor source files. To do this in Xcode, go to your active target and select the "Build Phases" tab. Now select all EDColor source files, press Enter, insert -fobjc-arc
and then "Done" to enable ARC for EDColor.