Skip to content

AVHexColor was inspired by the lack of hexadecimal colour integration of iOS.

License

Notifications You must be signed in to change notification settings

adamwulf/AVHexColor

 
 

Repository files navigation

AVHexColor

Build Status Badge w/ Version
ios/osx

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 *)colorWithHex:(UInt32)hexadecimal;
    • (AVColor *)colorWithHexString:(NSString *)hexadecimal;

And a lot of convenience methods...

Examples

iOS

// hex
UIColor *colorWithHex = [AVHexColor colorWithHex: 0xF00];
// string
UIColor *colorWithHex = [AVHexColor colorWithHexString: @"#8f6c"];

OS X

// hex
NSColor *colorWithHex = [AVHexColor colorWithHex: 0xF00];
// string
NSColor *colorWithHex = [AVHexColor colorWithHexString: @"#8f6c"];

Install

Recommended

Podfile

via CocoaPods

platform :ios
pod 'AVHexColor', '~> 1.2.0'

Alternatives

  1. Using git subtree
    • git subtree add --prefix=AVHexColor --squash https://github.com/anjerodesu/AVHexColor.git master
  2. Using git submodule
    • git submodule add https://github.com/anjerodesu/AVHexColor.git AVHexColor
  3. Download
    • Copy the AVHexColor.h and AVHexColor.m files and #import the header file (AVHexColor.h) to your project

License

ColorWithHex is available under the MIT license. See the LICENSE file for more info.

About

AVHexColor was inspired by the lack of hexadecimal colour integration of iOS.

Resources

License

Stars

Watchers

Forks

Packages

No packages published