iOS之给button加边框 . 圆角弧度 . 加阴影

UIButton*button =[UIButton buttonWithType:UIButtonTypeSystem];
//设置边框颜色
button.layer.borderColor= [[UIColor redColor]CGColor];
//设置边框宽度
button.layer.borderWidth=1.0f;
//给按钮设置角的弧度
button.layer.cornerRadius=4.0f;
//设置背景颜色
button.backgroundColor= [UIColor redColor];   
button.layer.masksToBounds=YES;

你可能感兴趣的:(iOS之给button加边框 . 圆角弧度 . 加阴影)