Skip to content

Instantly share code, notes, and snippets.

@danie7k
Created April 14, 2017 18:52
Show Gist options
  • Save danie7k/70790fcb82ed39d66c783ced4c965504 to your computer and use it in GitHub Desktop.
Save danie7k/70790fcb82ed39d66c783ced4c965504 to your computer and use it in GitHub Desktop.
import UIKit
extension UIColor {
convenience init(hex: Int, alpha: CGFloat = 1.0) {
self.init(
red: CGFloat((hex >> 16) & 0xFF) / 255.0,
green: CGFloat((hex >> 8) & 0xFF) / 255.0,
blue: CGFloat(hex & 0xFF) / 255.0,
alpha: alpha
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment