ios – 更改UIImageview形状矩形的默认形状

前端之家收集整理的这篇文章主要介绍了ios – 更改UIImageview形状矩形的默认形状前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在我开发一个项目,我需要显示带有边框的图像,如下面的形状.

我怎样才能做到这一点?我不知道这样做.请任何想法解决.

解决方法

可能这段代码会帮你…
UIBezierPath *maskPath;
 maskPath = [UIBezierPath bezierPathWithRoundedRect:YourImageVIew.bounds byRoundingCorners:(UIRectCornerTopRight | UIRectCornerBottomRight) cornerRadii:CGSizeMake(50.0,50.0)];

 CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
 maskLayer.frame = YourImageVIew.bounds;
 maskLayer.path = maskPath.CGPath;
 YourImageVIew.layer.mask = maskLayer;
原文链接:https://www.f2er.com/iOS/332148.html

猜你在找的iOS相关文章