作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 UIColor.init(named: "customColorSet")
从 ColorSet 中获取与当前 userInterfaceStyle
相匹配的颜色是没有问题的。
但是,如何从颜色集中获取特定颜色,例如浅色还是深色?
我尝试使用 UIColor.init(named: "customColorSet", in: nil, compatibleWith: UITraitCollection(userInterfaceStyle: .light))
但它似乎不起作用,因为仍然是颜色匹配当前的 userInterfaceStyle
被返回(在我的例子中是黑色的)。
最佳答案
您可以使用 UIColor.resolvedColor(with:)
测试:
let color = UIColor(named: "Color")?.resolvedColor(with: UITraitCollection(userInterfaceStyle: .light))
let rgb = color!.cgColor.components
关于swift - 如何从 ColorSet 中获取明确的浅色或深色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63686588/
使用 UIColor.init(named: "customColorSet") 从 ColorSet 中获取与当前 userInterfaceStyle 相匹配的颜色是没有问题的。 但是,如何从颜色
尝试单击“新颜色集”按钮时出现此错误: NoReverseMatch at /colorsets/new/ Reverse for 'user_logout' not found. 'user_log
我是一名优秀的程序员,十分优秀!