释放双眼,带上耳机,听听看~!
- //将图层的边框设置为圆脚
View.layer.cornerRadius = 8;
View.layer.masksToBounds = YES;
- //给图层添加一个有色边框
View.layer.borderWidth = 5;
View.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];
}