Skip to content

Instantly share code, notes, and snippets.

@aprofromindia
Created December 6, 2019 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aprofromindia/82d051f0e451619afc8387aa83ff98ca to your computer and use it in GitHub Desktop.
Save aprofromindia/82d051f0e451619afc8387aa83ff98ca to your computer and use it in GitHub Desktop.
UIColor RGB gist
//
// UIColor+RGB.swift
//
// Created by Apro on 06/12/19.
//
import UIKit
extension UIColor {
convenience init(red: Int, green: Int, blue: Int) {
assert(red >= 0 && red <= 255, "Invalid red component")
assert(green >= 0 && green <= 255, "Invalid green component")
assert(blue >= 0 && blue <= 255, "Invalid blue component")
self.init(red: CGFloat(red) / 255.0, green: CGFloat(green) / 255.0, blue: CGFloat(blue) / 255.0, alpha: 1.0)
}
convenience init(rgb: Int) {
self.init(
red: (rgb >> 16) & 0xFF,
green: (rgb >> 8) & 0xFF,
blue: rgb & 0xFF
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment