swift UIColor 相關(guān)擴展

  • 十六進制色值轉(zhuǎn)換成 UIColor
  • 獲取顏色的 RGBA 值
  • 使用 0 ~ 255 的色值初始化顏色
  • 獲取 UIColor 的十六進制色值
  • 生成隨機色
public extension UIColor {

    struct RGBA {
        var r: UInt8
        var g: UInt8
        var b: UInt8
        var a: UInt8
    }

    /// 將十六進制的字符串轉(zhuǎn)化為 `UInt32` 類型的數(shù)值, 能夠解析的最大值為 `0xFFFFFFFFFF` 超過此值返回 `UInt32.max`
    /// - Parameter hex: 十六進制字符串寇僧,如果字符串中包含非十六進制贸毕,那么只會將第一個非十六進制之前的十六進制轉(zhuǎn)化為 `UInt32`沪斟。如果第一個字符就是非十六進制的則會返回 `nil`
    /// - Returns: 轉(zhuǎn)換之后的 `UInt32` 類型的數(shù)值
    static func hexStringToUInt32(hex: String) -> UInt32? {
        let hexString = hex.replacingOccurrences(of: "#", with: "")
        let scanner = Scanner(string: hexString)
        var result: UInt64 = 0
        if scanner.scanHexInt64(&result) {
            return result > UInt32.max ? UInt32.max : UInt32(result)
        } else {
            return nil
        }
    }

    /// 將 UInt32 的顏色值轉(zhuǎn)換成 RGBA
    /// - Parameter from: UInt32 類型的顏色值
    /// - Returns: RGBA
    static func getRGBA(from: UInt32) -> RGBA {
        func getbyte(_ value: UInt32) -> UInt8 {
            return UInt8(value & 0xFF)
        }
        let r = getbyte(from >> 24)
        let g = getbyte(from >> 16)
        let b = getbyte(from >> 8)
        let a = getbyte(from)
        return RGBA(r: r, g: g, b: b, a: a)
    }

    /// 獲取 UIColor 的 RGBA 值
    var rgba: RGBA? {
        let numberOfComponents = self.cgColor.numberOfComponents
        // 使用圖片創(chuàng)建的 Color(`UIColor(patternImage:)`) 的 numberOfComponents 數(shù)量為 1
        if numberOfComponents == 1 {
            return nil
        } else if numberOfComponents == 2 {
            guard let rgb = self.cgColor.components?[0],
                let a = self.cgColor.components?[1] else { return nil }
            return RGBA(r: UInt8(rgb * 255),
                        g: UInt8(rgb * 255),
                        b: UInt8(rgb * 255),
                        a: UInt8(a * 255))
        } else if numberOfComponents == 4 {
            guard let r = self.cgColor.components?[0],
                let g = self.cgColor.components?[1],
                let b = self.cgColor.components?[2],
                let a = self.cgColor.components?[3] else { return nil }
            return RGBA(r: UInt8(r * 255),
                        g: UInt8(g * 255),
                        b: UInt8(b * 255),
                        a: UInt8(a * 255))
        } else {
            return nil
        }
    }

    /// 使用十六進制顏色值初始化 UIColor
    /// - Parameter hex: 十六進制顏色值
    convenience init?(hexColor: String) {
        var hex = hexColor.trimmingCharacters(in: .whitespacesAndNewlines).replacingOccurrences(of: "#", with: "")
        // 驗證色值的有效性
        let legalCharacter = hex.uppercased().map { String($0) }.filter { c -> Bool in
            let c1 = c > "9" && c < "A"
            let c2 = c < "0"
            let c3 = c > "F"
            return  c1 || c2 || c3
        }.count == 0

        guard legalCharacter else { return nil }
        if hex.count == 3 {
            hex = hex.map { String($0) }.map { $0 + $0 }.joined().appending("FF")
        } else if hex.count == 4 {
            hex = hex.map { String($0) }.map { $0 + $0 }.joined()
        } else if hex.count == 6 {
            hex = hex.appending("FF")
        } else if hex.count == 8 {
        } else {
            return nil
        }

        guard let colorValue = Self.hexStringToUInt32(hex: hex) else { return nil }
        let rgba = Self.getRGBA(from: colorValue)
        self.init(red: CGFloat(rgba.r) / 255,
                  green: CGFloat(rgba.g) / 255,
                  blue: CGFloat(rgba.b) / 255,
                  alpha: CGFloat(rgba.a) / 255)
    }

    /// 使用 RGBA 的 UInt8 數(shù)值初始化 UIColor
    /// - Parameters:
    ///   - red: 紅色值
    ///   - green: 綠色值
    ///   - blue: 藍色值
    ///   - alpha: 透明度
    convenience init(red: UInt8, green: UInt8, blue: UInt8, alpha: UInt8) {
        self.init(red: CGFloat(red) / 255.0,
                  green: CGFloat(green) / 255.0,
                  blue: CGFloat(blue) / 255.0,
                  alpha: CGFloat(alpha) / 255.0)
    }

    /// 使用 RGB 的 UInt8 數(shù)值,以及 alpha 0~1 初始化 UIColor
    /// - Parameters:
    ///   - red: 紅色值
    ///   - green: 綠色值
    ///   - blue: 藍色值
    ///   - alpha: 透明度 0~1
    convenience init(red: UInt8, green: UInt8, blue: UInt8, alpha: CGFloat) {
        self.init(red: CGFloat(red) / 255.0,
                  green: CGFloat(green) / 255.0,
                  blue: CGFloat(blue) / 255.0,
                  alpha: alpha)
    }

    /// 十六進制色值
    var hexValue: String? {
        guard let rgba = rgba else { return nil }
        return String(format: "%02X%02X%02X%02X", rgba.r,rgba.g,rgba.b,rgba.a)
    }

    /// 生成隨機色
    static var random: UIColor {
        let r = CGFloat.random(in: 0...1)
        let g = CGFloat.random(in: 0...1)
        let b = CGFloat.random(in: 0...1)
        let a = CGFloat.random(in: 0...1)
        return UIColor(red: r, green: g, blue: b, alpha: a)
    }
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末宇攻,一起剝皮案震驚了整個濱河市对蒲,隨后出現(xiàn)的幾起案子喊积,更是在濱河造成了極大的恐慌俏让,老刑警劉巖笔咽,帶你破解...
    沈念sama閱讀 216,324評論 6 498
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件桦他,死亡現(xiàn)場離奇詭異蔫巩,居然都是意外死亡,警方通過查閱死者的電腦和手機瞬铸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,356評論 3 392
  • 文/潘曉璐 我一進店門批幌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人嗓节,你說我怎么就攤上這事荧缘。” “怎么了拦宣?”我有些...
    開封第一講書人閱讀 162,328評論 0 353
  • 文/不壞的土叔 我叫張陵截粗,是天一觀的道長。 經(jīng)常有香客問我鸵隧,道長绸罗,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,147評論 1 292
  • 正文 為了忘掉前任豆瘫,我火速辦了婚禮珊蟀,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘外驱。我一直安慰自己育灸,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 67,160評論 6 388
  • 文/花漫 我一把揭開白布昵宇。 她就那樣靜靜地躺著磅崭,像睡著了一般。 火紅的嫁衣襯著肌膚如雪瓦哎。 梳的紋絲不亂的頭發(fā)上砸喻,一...
    開封第一講書人閱讀 51,115評論 1 296
  • 那天,我揣著相機與錄音蒋譬,去河邊找鬼割岛。 笑死,一個胖子當(dāng)著我的面吹牛羡铲,可吹牛的內(nèi)容都是我干的蜂桶。 我是一名探鬼主播,決...
    沈念sama閱讀 40,025評論 3 417
  • 文/蒼蘭香墨 我猛地睜開眼也切,長吁一口氣:“原來是場噩夢啊……” “哼扑媚!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起雷恃,我...
    開封第一講書人閱讀 38,867評論 0 274
  • 序言:老撾萬榮一對情侶失蹤疆股,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后倒槐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體旬痹,經(jīng)...
    沈念sama閱讀 45,307評論 1 310
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 37,528評論 2 332
  • 正文 我和宋清朗相戀三年讨越,在試婚紗的時候發(fā)現(xiàn)自己被綠了两残。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 39,688評論 1 348
  • 序言:一個原本活蹦亂跳的男人離奇死亡把跨,死狀恐怖人弓,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情着逐,我是刑警寧澤崔赌,帶...
    沈念sama閱讀 35,409評論 5 343
  • 正文 年R本政府宣布,位于F島的核電站耸别,受9級特大地震影響健芭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜秀姐,卻給世界環(huán)境...
    茶點故事閱讀 41,001評論 3 325
  • 文/蒙蒙 一慈迈、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧省有,春花似錦痒留、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,657評論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至搏予,卻和暖如春熊锭,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背雪侥。 一陣腳步聲響...
    開封第一講書人閱讀 32,811評論 1 268
  • 我被黑心中介騙來泰國打工碗殷, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人速缨。 一個月前我還...
    沈念sama閱讀 47,685評論 2 368
  • 正文 我出身青樓锌妻,卻偏偏與公主長得像,于是被迫代替她去往敵國和親旬牲。 傳聞我的和親對象是個殘疾皇子仿粹,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 44,573評論 2 353