iOS 裁剪View指定的角裁剪

在开发中碰到view的左上角和右上角需要裁剪,具体实现方法如下:

UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:self.bgView.bounds byRoundingCorners:UIRectCornerTopRight | UIRectCornerTopLeft cornerRadii:CGSizeMake(, )];
CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];
maskLayer.path = maskPath.CGPath;
self.bgView.layer.mask = maskLayer;
(instancetype)bezierPathWithRoundedRect:(CGRect)rect byRoundingCorners:(UIRectCorner)corners cornerRadii:(CGSize)cornerRadii;在这个方法中,第二个参数UIRectCorner是一个枚举类型,即你需要指定裁剪为圆角的view的角

具体枚举值为:

typedef NS_OPTIONS(NSUInteger, UIRectCorner) {
UIRectCornerTopLeft = << , //左上角
UIRectCornerTopRight = << , //右上角
UIRectCornerBottomLeft = << , //左下角
UIRectCornerBottomRight = << , //右下角
UIRectCornerAllCorners = ~0UL //四个角
};

如果你想裁剪多个不同的角,可以用"|"进行组合,传入多个即可。方法中的CAShapeLayer是一个神奇的子类,可以定制很多有趣的UI控件,具体参考

文章:放肆的使用UIBezierPath和CAShapeLayer画各种图形

上一篇:Nodejs v4.x.0API文档学习(2)Assert断言测试模块


下一篇:Keepalived+MySQL双主