Skip to content

Instantly share code, notes, and snippets.

@matoelorriaga
Last active January 7, 2017 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matoelorriaga/384dd79e4a42c190638d278f57f854f7 to your computer and use it in GitHub Desktop.
Save matoelorriaga/384dd79e4a42c190638d278f57f854f7 to your computer and use it in GitHub Desktop.
import UIKit
extension UIColor
{
convenience init(hex: String, alpha: CGFloat = 1)
{
assert(hex[hex.startIndex] == "#", "Expected hex string of format #RRGGBB")
let scanner = Scanner(string: hex)
scanner.scanLocation = 1 // skip #
var rgb: UInt32 = 0
scanner.scanHexInt32(&rgb)
self.init(
red: CGFloat((rgb & 0xFF0000) >> 16) / 255.0,
green: CGFloat((rgb & 0xFF00) >> 8) / 255.0,
blue: CGFloat((rgb & 0xFF)) / 255.0,
alpha: alpha)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment