Skip to content

Instantly share code, notes, and snippets.

@KentarouKanno
Created April 16, 2019 02:49
Show Gist options
  • Save KentarouKanno/d10944ffebbb4b856974a21b8b900ed5 to your computer and use it in GitHub Desktop.
Save KentarouKanno/d10944ffebbb4b856974a21b8b900ed5 to your computer and use it in GitHub Desktop.
  • UIColorのalphaを設定する
extension UIColor {
    
    func alpha(_ value: CGFloat) -> UIColor {
        return withAlphaComponent(value)
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment