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