Skip to content

Instantly share code, notes, and snippets.

@yashthaker7
Last active June 25, 2018 06:57
Show Gist options
  • Save yashthaker7/f38d77406804b24e6708377fd2ef14f3 to your computer and use it in GitHub Desktop.
Save yashthaker7/f38d77406804b24e6708377fd2ef14f3 to your computer and use it in GitHub Desktop.
UIColor+Extension.swift
extension UIColor {
convenience public init(r: CGFloat, g: CGFloat, b: CGFloat) {
self.init(r: r, g: g, b: b, a: 1)
}
convenience public init(r: CGFloat, g: CGFloat, b: CGFloat, a: CGFloat) {
self.init(red: r/255, green: g/255, blue: b/255, alpha: a)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment