美文网首页
单个角的裁剪

单个角的裁剪

作者: 寒雨晚风 | 来源:发表于2023-03-28 14:35 被阅读0次

    -(void)layoutSubviews

    {

        UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, ScreenWidth-34, 1000) byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight cornerRadii:CGSizeMake(8, 8)];

        CAShapeLayer*maskLayer = [[CAShapeLayeralloc]init];

        maskLayer.frame=self.imagesView.bounds;

        maskLayer.path= maskPath.CGPath;

        self.imagesView.layer.mask= maskLayer;

    }

    相关文章

      网友评论

          本文标题:单个角的裁剪

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