xcode9 xcassets 添加颜色

很简单,直接上图


xcode9 xcassets 添加颜色_第1张图片
image.png
xcode9 xcassets 添加颜色_第2张图片
image.png

很方便的在IB中使用了

xcode9 xcassets 添加颜色_第3张图片
image.png

代码中也能使用

        let co = UIColor(named: "MyColor")
        let label = UILabel(frame: CGRect(origin: self.view.center, size: CGSize(width: 100, height: 30)))
        self.view.addSubview(label)
        label.text = "测试下颜色怎么样"
        label.textColor = co

效果

xcode9 xcassets 添加颜色_第4张图片
image.png

你可能感兴趣的:(xcode9 xcassets 添加颜色)