Created
May 27, 2015 14:56
-
-
Save gonelf/2bf608479b53cfe5ab57 to your computer and use it in GitHub Desktop.
UIColor + Hexadecimal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension UIColor { | |
convenience init(hex: String) { | |
var red: CGFloat = 0.0 | |
var green: CGFloat = 0.0 | |
var blue: CGFloat = 0.0 | |
var alpha: CGFloat = 1.0 | |
if hex.hasPrefix("#") { | |
let index = advance(hex.startIndex, 1) | |
let _hex = hex.substringFromIndex(index) | |
let scanner = NSScanner(string: _hex) | |
var hexValue: CUnsignedLongLong = 0 | |
if scanner.scanHexLongLong(&hexValue) { | |
switch (count(_hex)) { | |
case 3: | |
red = CGFloat((hexValue & 0xF00) >> 8) / 15.0 | |
green = CGFloat((hexValue & 0x0F0) >> 4) / 15.0 | |
blue = CGFloat(hexValue & 0x00F) / 15.0 | |
case 4: | |
red = CGFloat((hexValue & 0xF000) >> 12) / 15.0 | |
green = CGFloat((hexValue & 0x0F00) >> 8) / 15.0 | |
blue = CGFloat((hexValue & 0x00F0) >> 4) / 15.0 | |
alpha = CGFloat(hexValue & 0x000F) / 15.0 | |
case 6: | |
red = CGFloat((hexValue & 0xFF0000) >> 16) / 255.0 | |
green = CGFloat((hexValue & 0x00FF00) >> 8) / 255.0 | |
blue = CGFloat(hexValue & 0x0000FF) / 255.0 | |
case 8: | |
red = CGFloat((hexValue & 0xFF000000) >> 24) / 255.0 | |
green = CGFloat((hexValue & 0x00FF0000) >> 16) / 255.0 | |
blue = CGFloat((hexValue & 0x0000FF00) >> 8) / 255.0 | |
alpha = CGFloat(hexValue & 0x000000FF) / 255.0 | |
default: | |
print("Invalid RGB string, number of characters after '#' should be either 3, 4, 6 or 8") | |
} | |
} else { | |
println("Scan hex error") | |
} | |
} else { | |
print("Invalid RGB string, missing '#' as prefix") | |
} | |
self.init(red:red, green:green, blue:blue, alpha:alpha) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment