美文网首页
iOS的label如何既有边框又有背景色

iOS的label如何既有边框又有背景色

作者: 坤哥lqk | 来源:发表于2017-03-22 16:32 被阅读43次

    UILabel *label = [[UILabel alloc] init];

    label.backgroundColor = [UIColor redColor];

    label.layer.borderColor = [[UIColor grayColor]CGColor];

    label.layer.borderWidth = 0.5f;

    label.layer.masksToBounds = YES;

    label.layer.cornerRadius = 5

    #import< QuartzCore/QuartzCore.h>

    相关文章

      网友评论

          本文标题:iOS的label如何既有边框又有背景色

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