美文网首页
给UILabel添加边框和圆角

给UILabel添加边框和圆角

作者: 闲云悠鹤蝶恋舞 | 来源:发表于2016-06-20 19:15 被阅读845次
    // 设置lable圆角
    label.layer.cornerRadius = 5;
    label.layer.masksToBounds = YES;
    
    // 设置边框的颜色和边框的宽度
    label.layer.borderColor = RGBCOLOR(225, 225, 225).CGColor;
    label.layer.borderWidth = 1;
    

    相关文章

      网友评论

          本文标题:给UILabel添加边框和圆角

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