AVHexColor
AVHexColor copied to clipboard
AVHexColor was inspired by the lack of hexadecimal colour integration of iOS.
AVHexColor
AVHexColor was inspired by the lack of hexadecimal colour integration of iOS. AVHexColor is a class with hex support for both NSColor and UIColor. Supports both prefixed with "#" and without for string-based hex colours.
Methods
-
- (AVColor *)colorWithFullHex:(UInt32)hexadecimal;
-
- (AVColor *)colorWithHexString:(NSString *)hexadecimal;
And a lot of convenience methods...
Examples
iOS
// hex
UIColor *colorWithHex = [AVHexColor colorWithFullHex: 0xFFFF0000];
// string
UIColor *colorWithHex = [AVHexColor colorWithHexString: @"#8f6c"];
OS X
// hex
NSColor *colorWithHex = [AVHexColor colorWithFullHex: 0xFFFF0000];
// string
NSColor *colorWithHex = [AVHexColor colorWithHexString: @"#8f6c"];
Install
Recommended
Podfile
via CocoaPods
platform :ios
pod 'AVHexColor', '~> 3.0.0'
Alternatives
- Using git subtree
git subtree add --prefix=AVHexColor --squash https://github.com/anjerodesu/AVHexColor.git master
- Using git submodule
git submodule add https://github.com/anjerodesu/AVHexColor.git AVHexColor
- Download
- Copy the
AVHexColor.handAVHexColor.mfiles and#importthe header file (AVHexColor.h) to your project
- Copy the
License
ColorWithHex is available under the MIT license. See the LICENSE file for more info.

