Assets.xcassets文件创建颜色集合

之前的Assets.xcassets文件只能创建图片集合。现在可以创建颜色文件集合了。

1, 创建New Color set文件就可以看到下图内容

image

2, 你可以给颜色
1), 设置名称,
2), 使用的设备范围,
3), 选择颜色--里面有系统默认颜色,也可以到其他位置获取
4), 设置RGBA值

image

根据自己的需求,选择具体的值,完成上面的操作,使用代码:
self.view.backgroundColor = [UIColor colorNamed:@"颜色名称"];

你可能感兴趣的:(Assets.xcassets文件创建颜色集合)