Skip to content
forked from mRs-/HexColors

Easy HEX- and RGB-Color Handling for UIColor and NSColor as a drop in category.

License

Notifications You must be signed in to change notification settings

nfranke/HexColors

 
 

Repository files navigation

HexColors

Badge w/ Version

Badge w/ Version

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 HexColors
  • pod 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.

About

Easy HEX- and RGB-Color Handling for UIColor and NSColor as a drop in category.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 93.6%
  • Ruby 6.4%