标签: ios uiview calayer
如果我创建一个继承自UIView类的自定义视图类,则可以使用关键字layer.访问属性,例如使用layer.cornerRadius = 10,例如使用backgroundColor = (Color Literal)访问背景没有layer.
UIView
layer.
layer.cornerRadius = 10
backgroundColor = (Color Literal)
为什么? layer是什么意思,什么时候使用,什么时候不使用?
layer