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: 有疑问欢迎留言。
网友评论