Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 268 Bytes

common-code.md

File metadata and controls

11 lines (9 loc) · 268 Bytes

Handy extensions and commonly used code

UIColor rbg extension

extension UIColor {
    static func rgb(red: CGFloat, green: CGFloat, blue: CGFloat) -> UIColor {
        return UIColor(red: red/255, green: green/255, blue: blue/255, alpha: 1)
    }
}