3未解决的标识符CGColorGetComponents

3未解决的标识符CGColorGetComponents

本文介绍了Swift 3未解决的标识符CGColorGetComponents的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在Swift 3中重构此代码?

How can I refactor this code in Swift 3?:

    extension UIColor {
        var hexString: String {
            // Produces "Use of unresolved identifier 'CGColorGetComponents'"
            let components = CGColorGetComponents(self.cgColor)
            ....
        }
    }

推荐答案

var r:CGFloat = 0, g:CGFloat = 0, b:CGFloat = 0, a:CGFloat = 0
self.getRed(&r, green: &g, blue: &b:, alpha: &a)
...

这篇关于Swift 3未解决的标识符CGColorGetComponents的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 05:57