首页 > 移动平台 > 详细

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

时间:2015-05-29 12:04:25      阅读:759      评论:0      收藏:0      [点我收藏+]
        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;
也可以设置线的宽度和颜色。



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

原文:http://blog.csdn.net/zhouleizhao/article/details/46226161

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!