iOS 指定圆角个数
需要实现的效果很明确,只要左上和右上两个地方圆角,以前都是通过layer 直接设置四个角都变成圆角,然后我就开始了强大的搜索功能
然后我就获得了我想要的东西
技术链接:http://www.xuebuyuan.com/1710271.html
UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(72, 91, 115, 66)];
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:imgView.bounds byRoundingCorners:UIRectCornerTopLeft | UIRectCornerTopRight cornerRadii:CGSizeMake(8, 8)];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.frame = imgView.bounds;
maskLayer.path = maskPath.CGPath;
imgView.layer.mask = maskLayer;
上面是我的代码 具体可以根据捏需求来设置圆角,原文写的很清楚咯 我就不多少了
浙公网安备 33010602011771号