swift设置圆角

代码中实现

view.layer.cornerRadius = 2 //圆角弧度
view.layer.masksToBounds = true  //是否把圆角边切去

view.layer.borderWidth = 1   //设置边框 的宽度 

view.layer.borderColor = UIColor.redColor.CGColor  //设置边框的颜色


在xib中实现

点击User Defined Runtime Attributes  的➕号

设置弧度

Key Path  : layer.cornerRadius

Type         : Number

Value        : 2

切去圆角

Key Path  : layer.masksToBounds

Type         : Boolean

Value        : ☑️



你可能感兴趣的:(swift)