Skip to content

Instantly share code, notes, and snippets.

@cscouto
Created February 18, 2018 08:20
Show Gist options
  • Save cscouto/a5b49ce7bad46c0ec29a3b73f729e84b to your computer and use it in GitHub Desktop.
Save cscouto/a5b49ce7bad46c0ec29a3b73f729e84b to your computer and use it in GitHub Desktop.
SWIFT - Getting color from hex value
extension UIColor {
convenience init(hex: String) {
let scanner = Scanner(string: hex)
scanner.scanLocation = 0
var rgbValue: UInt64 = 0
scanner.scanHexInt64(&rgbValue)
let r = (rgbValue & 0xff0000) >> 16
let g = (rgbValue & 0xff00) >> 8
let b = rgbValue & 0xff
self.init(
red: CGFloat(r) / 0xff,
green: CGFloat(g) / 0xff,
blue: CGFloat(b) / 0xff, alpha: 1
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment