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

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

作者: 代码干货 | 来源:发表于2015-09-30 10:44 被阅读7472次
UIButton *button = [UIButton alloc] initWithFrame:CGRect(100, 100, 100 , 100)];
    //设置边框颜色
    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/nnzwcttx.html