HexColors is drop in category for HexColor Support for NSColor and UIColor. Support for HexColors with prefixed # and without.
#Example iOS
// with hash
UIColor *colorWithHex = [UIColor colorWithHexString:@"#ff8942" alpha:1];
// without hash
UIColor *secondColorWithHex = [UIColor colorWithHexString:@"ff8942" alpha:1];
// short handling
UIColor *shortColorWithHex = [UIColor colorWithHexString:@"fff" alpha:1];
#Example Mac OS X
// with hash
NSColor *colorWithHex = [NSColor colorWithHexString:@"#ff8942" alpha:1];
// wihtout hash
NSColor *secondColorWithHex = [NSColor colorWithHexString:@"ff8942" alpha:1];
// short handling
NSColor *shortColorWithHex = [NSColor colorWithHexString:@"fff" alpha:1];
#Installation
#import HexColors.h
where you want to use easy as pie HexColorspod install HexColors
- or just drag the source files in your project
##Requirements HexColors requires iOS 5.0 and above, and Mac OS X 10.6
#ToDos
- Implementing Hex Alpha values
##Credits HexColors was created by Marius Landwehr because of the pain recalculating Hex values to RGB.
HexColors was ported to Mac OS X by holgersindbaek.
##Creator Marius Landwehr @mariusLAN
##License HexColors is available underthe MIT license. See the LICENSE file for more info.