Created
September 16, 2018 17:50
-
-
Save pvn/ed25b5412e8b734a2da410703560b202 to your computer and use it in GitHub Desktop.
Color extension using swift
This file contains 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
import Foundation | |
import UIKit | |
extension UIColor { | |
convenience init(hexString: String, alpha: CGFloat = 1.0) { | |
let hexString: String = hexString.trimmingCharacters(in: CharacterSet.whitespacesAndNewlines) | |
let scanner = Scanner(string: hexString) | |
if (hexString.hasPrefix("#")) { | |
scanner.scanLocation = 1 | |
} | |
var color: UInt32 = 0 | |
scanner.scanHexInt32(&color) | |
let mask = 0x000000FF | |
let r = Int(color >> 16) & mask | |
let g = Int(color >> 8) & mask | |
let b = Int(color) & mask | |
let red = CGFloat(r) / 255.0 | |
let green = CGFloat(g) / 255.0 | |
let blue = CGFloat(b) / 255.0 | |
self.init(red:red, green:green, blue:blue, alpha:alpha) | |
} | |
func toHexString() -> String { | |
var r:CGFloat = 0 | |
var g:CGFloat = 0 | |
var b:CGFloat = 0 | |
var a:CGFloat = 0 | |
getRed(&r, green: &g, blue: &b, alpha: &a) | |
let rgb:Int = (Int)(r*255)<<16 | (Int)(g*255)<<8 | (Int)(b*255)<<0 | |
return String(format:"#%06x", rgb) | |
} | |
} | |
let color = UIColor(hexString: "#336BFF") | |
print("Color: \(color)") //color object | |
/*HEX | |
#336BFF | |
RGB | |
51, 107, 255 | |
HSL | |
224, 80%, 60%*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment