美文网首页iOS日常开发
Swift3.0 extension UIColor With

Swift3.0 extension UIColor With

作者: 风与鸾 | 来源:发表于2017-06-15 10:51 被阅读4次

    十六进制转化颜色

    UI妹子通常都是给一个颜色的十六进制标示,在开发中通过扩展UIColor实现一个十六进制转化RGB Color

    // MARK: UIColor 扩展
    public extension UIColor {
        
        /// 根据16进制返回UIColor
        ///
        /// - Parameter rgbValue: ex:0xff9933
        /// - Returns: alpha:1.0
        class func kRGBColorWithHex(_ rgbValue:Int) -> UIColor {
           return kRGBColorWithHex(rgbValue, alpha: 1.0)
        }
        
        /// 根据16进制和alpha返回UIColor
        ///
        /// - Parameters:
        ///   - rgbValue: ex:0xffffff(1111 1111 1111 1111 1111 1111) & 0xff0000(1111 1111 0000 0000 0000 0000) -> value:1111 1111 0000 0000 0000 0000
        ///                  r:value >> 16 得到:1111 1111 ->转换为10进制数:255
        ///   - alpha: 透明度
        /// - Returns: UIColor
       class func kRGBColorWithHex(_ rgbValue:Int, alpha:CGFloat) -> UIColor {
            let r : CGFloat = (CGFloat)((rgbValue & 0xFF0000) >> 16) / 255.0
            let g : CGFloat = (CGFloat)((rgbValue & 0xFF00) >> 8) / 255.0
            let b : CGFloat  = (CGFloat)((rgbValue & 0xFF) ) / 255.0
            return UIColor.init(red: r, green: g, blue: b, alpha: alpha)
        }
    }
    

    相关文章

      网友评论

        本文标题:Swift3.0 extension UIColor With

        本文链接:https://www.haomeiwen.com/subject/avuyqxtx.html