IOS UILabel 设置圆角

           UILabel 的layer.corner.radius属性直观上没有修改圆角UIview可以设置

    label.layer.masksToBounds = YES;

    label.layer.cornerRadius = 10;


你可能感兴趣的:(IOS UILabel 设置圆角)