在xib 选中需要设置的view
进行如下设置
layer.cornerRadius 设置圆角 Number 类型
layer.borderWidth 设置边宽 Number 类型
设置边框颜色要给CALayer 添加Category
```
@interface CALayer (XibConfiguration)
@property(nonatomic, assign) UIColor *borderUIColor;
@end
@implementation CALayer (XibConfiguration)
-(void)setBorderUIColor:(UIColor*)color
{
self.borderColor = color.CGColor;
}
-(UIColor*)borderUIColor
{
return [UIColor colorWithCGColor:self.borderColor];
}
@end
```
然后设置边框颜色才有效
layer.borderUIColor
注意边宽和圆角要设置成Number 类型