美文网首页
在使用masonry设置view后发现,设置任意角的圆角不起作用

在使用masonry设置view后发现,设置任意角的圆角不起作用

作者: 失忆的程序员 | 来源:发表于2020-05-15 16:33 被阅读0次

/// 利用贝塞尔曲线添加指定位置圆角
/// @param view view
/// @param conrners 圆角位置
/// @param cornerRadii 圆角大小
- (void)BezierPathWithRoundedRect:(UIView *)view RoundingCorners:(UIRectCorner)conrners CornerRadii:(CGSize)cornerRadii {
    [self layoutIfNeeded];
    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view.bounds byRoundingCorners:conrners cornerRadii:cornerRadii];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = view.bounds;
    maskLayer.path = maskPath.CGPath;
    view.layer.mask = maskLayer;
}

[self layoutIfNeeded];

加上这句就好用了

相关文章

网友评论

      本文标题:在使用masonry设置view后发现,设置任意角的圆角不起作用

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