使用 cgColor 自定义颜色
Custom Color with cgColor
这可能是你一整天看到的最愚蠢的问题,但我找不到解决方案。我有一个带边框的圆形图像视图,我希望边框与 Xcode 中的默认色调颜色相同,因此如果您能提供帮助,那就太好了。抱歉这个中午的问题 ;)
现在我有了这个:
self.imageView.layer.borderColor = UIColor.gray.cgColor
我需要改变
UIColor.gray.cgColor
与默认色调 相同 蓝色,而不会导致崩溃或错误...如何实现?
感谢您的帮助。
只需创建具有蓝色属性的新颜色并应用于 imageView
let color = UIColor(colorLiteralRed: 0, green: 122/255, blue: 1, alpha: 1.0)
self.imageView.layer.borderColor = color.cgColor
注意,您可以像
一样使用 imageView 的 tintColor 属性
imageView.layer.borderColor = imageView.tintColor.cgColor
只需拖放您想要的任何颜色,例如:
这可能是你一整天看到的最愚蠢的问题,但我找不到解决方案。我有一个带边框的圆形图像视图,我希望边框与 Xcode 中的默认色调颜色相同,因此如果您能提供帮助,那就太好了。抱歉这个中午的问题 ;)
现在我有了这个:
self.imageView.layer.borderColor = UIColor.gray.cgColor
我需要改变
UIColor.gray.cgColor
与默认色调 相同 蓝色,而不会导致崩溃或错误...如何实现?
感谢您的帮助。
只需创建具有蓝色属性的新颜色并应用于 imageView
let color = UIColor(colorLiteralRed: 0, green: 122/255, blue: 1, alpha: 1.0)
self.imageView.layer.borderColor = color.cgColor
注意,您可以像
一样使用 imageView 的 tintColor 属性imageView.layer.borderColor = imageView.tintColor.cgColor
只需拖放您想要的任何颜色,例如: