美文网首页
iOS UIView 某个角设置圆角

iOS UIView 某个角设置圆角

作者: 114105lijia | 来源:发表于2019-10-15 16:53 被阅读0次

直接上代码

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:_statusLab.bounds byRoundingCorners:UIRectCornerTopLeft | UIRectCornerBottomLeft cornerRadii:CGSizeMake(_statusLab.height / 2, _statusLab.height / 2)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = _statusLab.bounds;
    maskLayer.path = maskPath.CGPath;
    _statusLab.layer.mask = maskLayer;

相关文章

网友评论

      本文标题:iOS UIView 某个角设置圆角

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