美文网首页
iOS之给button加边框 . 圆角弧度 . 加阴影

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

作者: 苏苏咯 | 来源:发表于2016-06-01 17:15 被阅读229次
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加边框 . 圆角弧度 . 加阴影

      本文链接:https://www.haomeiwen.com/subject/bfvhdttx.html