Skip to content

Convenience method for creating autoreleased color using RGBA hex string.

License

Notifications You must be signed in to change notification settings

kevinvance/UIColor-Hex-Swift

 
 

Repository files navigation

UIColor+Hex, now Swift.

Convenience method for creating autoreleased color using RGBA hex string.

var strokeColor = UIColor(rgba: "#ffcc00").CGColor // Solid color

var fillColor = UIColor(rgba: "#ffcc00dd").CGColor // Color with alpha

var backgroundColor = UIColor(rgba: "#FFF") // Supports shorthand 3 character representation

var menuTextColor = UIColor(rgba: "#013E") // Supports shorthand 4 character representation (with alpha)

var hexString = UIColor.redColor().hexStringWithAlpha(false) // "#FF0000"

##Installation

###CocoaPods

Simply add the following lines to your Podfile:

# required by Cocoapods 0.36.0.rc.1 for Swift Pods
use_frameworks! 

pod 'UIColor_Hex_Swift', '~> 1.5'

(CocoaPods v0.36 or later required. See this blog post for details.)

###Carthage

Simply add the following line to your Cartfile:

github "yeahdongcn/UIColor-Hex-Swift" >= 1.5

================= See more in RSBarcodes_Swift and objc version

About

Convenience method for creating autoreleased color using RGBA hex string.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Swift 93.2%
  • Ruby 3.8%
  • Objective-C 3.0%