ios开发 UIView(UIImageView)添加六边形的遮罩

        float viewWidth = 80;        
        UIBezierPath * path = [UIBezierPath bezierPath];
        path.lineWidth = 2;
        [[UIColor whiteColor] setStroke];
        [path moveToPoint:CGPointMake((sin(M_1_PI / 180 * 60)) * (viewWidth / 2), (viewWidth / 4))];
        [path addLineToPoint:CGPointMake((viewWidth / 2), 0)];
        [path addLineToPoint:CGPointMake(viewWidth - ((sin(M_1_PI / 180 * 60)) * (viewWidth / 2)), (viewWidth / 4))];
        [path addLineToPoint:CGPointMake(viewWidth - ((sin(M_1_PI / 180 * 60)) * (viewWidth / 2)), (viewWidth / 2) + (viewWidth / 4))];
        [path addLineToPoint:CGPointMake((viewWidth / 2), viewWidth)];
        [path addLineToPoint:CGPointMake((sin(M_1_PI / 180 * 60)) * (viewWidth / 2), (viewWidth / 2) + (viewWidth / 4))];
        [path closePath];
        
        CAShapeLayer * shapLayer = [CAShapeLayer layer];
        shapLayer.lineWidth = 2;
        shapLayer.strokeColor = [UIColor whiteColor].CGColor;
        shapLayer.path = path.CGPath;

        _headerImageView.layer.mask = shapLayer;


        同理其他多边形也可以实现。

           圆形的:_headerImageView.layer.cornerRadius = viewWidth / 2;
                       _headerImageView.clipsToBounds = true;
也可以设置线的宽度和颜色。



郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。