美文网首页
IOS 切任意角度

IOS 切任意角度

作者: 不要动 | 来源:发表于2019-09-25 18:25 被阅读0次

    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:btn.bounds byRoundingCorners:UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];

        CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];

                maskLayer.frame = btn.bounds;

                maskLayer.path = maskPath.CGPath;

          btn.layer.mask  = maskLayer;

    IOS 切任意角度

    相关文章

      网友评论

          本文标题:IOS 切任意角度

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