美文网首页
iOS 一个view设置部分圆角

iOS 一个view设置部分圆角

作者: 磊简单 | 来源:发表于2019-07-19 09:55 被阅读0次

这也是一种比较推荐的写法,不会产生离屏渲染问题

- (void)setupCornerRadius
{
    UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, KSCREEN_WIDTH, 450)
                                                   byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight
                                                         cornerRadii:CGSizeMake(12, 12)];
    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
    maskLayer.frame = self.contentView.bounds;
    maskLayer.path = maskPath.CGPath;
    self.contentView.layer.mask = maskLayer;
}

效果

上半部分圆角.png

相关文章

网友评论

      本文标题:iOS 一个view设置部分圆角

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