美文网首页
View自定义圆角-(贝塞尔曲线实现)

View自定义圆角-(贝塞尔曲线实现)

作者: 冬的天 | 来源:发表于2017-02-20 21:41 被阅读0次

实例代码如下(效果如下图所示):

UIBezierPath *maskPath =  [UIBezierPath bezierPathWithRoundedRect:self.contentView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];

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

mackLayer.frame = self.contentView.bounds;

mackLayer.path = maskPath.CGPath;

self.contentView.layer.mask = mackLayer;

相关文章

网友评论

      本文标题:View自定义圆角-(贝塞尔曲线实现)

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