美文网首页
UIView 的部分圆角的设定

UIView 的部分圆角的设定

作者: 靠北的北 | 来源:发表于2019-02-26 14:25 被阅读4次
// UIView 的部分圆角的设定
UIBezierPath*maskPath = [UIBezierPath bezierPathWithRoundedRect:self.tipInfoSubView.bounds byRoundingCorners:(UIRectCornerTopRight | UIRectCornerTopLeft) cornerRadii:CGSizeMake(4,4)];//圆角大小
        CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
        maskLayer.frame = self.tipInfoSubView.bounds;
        maskLayer.path = maskPath.CGPath;
        self.tipInfoSubView.layer.mask = maskLayer;

相关文章

网友评论

      本文标题:UIView 的部分圆角的设定

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