如何设置Button和ImageView的圆角度和边框宽度和颜色

UIButton *button = [UIButtonbuttonWithType:UIButtonTypeSystem]

[button.layer setMasksToBounds:YES];

[button.layer setCornerRadius:10.0];//设置矩形四个圆角半径

[button.layersetBorderWidth:1.0];//边框宽度

//设置边框颜色有两种方法:第一种如下:

CGColorSpaceRef colorSpace =CGColorSpaceCreateDeviceRGB();

CGColorRef colorref =CGColorCreate(colorSpace,(CGFloat[]){ 0, 0, 0, 1});

[button.layersetBorderColor:colorref];//边框颜色

//第二种方法如下:

button.borderColor=[UIColorgrayColor].CGColor;


PS: 有疑问欢迎留言。

你可能感兴趣的:(如何设置Button和ImageView的圆角度和边框宽度和颜色)