码迷,mamicode.com
首页 > 移动开发 > 详细

iOS - 指定视图的圆角个数-b

时间:2016-09-21 01:45:06      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

平常设置视图的圆角最普遍的就是设置四个角的,方法也就是一句代码解决:

view.layer.cornerRadius = 10;

技术分享

四个圆角

但有时需求会是指定某个,或者特定哪几个角设置圆角,所以我们需要不一样的解决方法:

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(50, 150, 60, 60)];     
view.backgroundColor = [UIColor orangeColor];    
// UIRectCornerTopLeft      左上角     
// UIRectCornerTopRight     右上角     
// UIRectCornerBottomLeft   左下角     
// UIRectCornerBottomRight  右下角     
// UIRectCornerAllCorners   四个角     
// byRoundingCorners: 参数可以选择上面五种,需要制定某几个角为圆角,就要用 “|” 组合     
// cornerRadii: 代表圆角值大小     
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:view.bounds byRoundingCorners:UIRectCornerTopLeft | UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];    CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];     
maskLayer.frame = view.bounds;     
maskLayer.path = maskPath.CGPath;     
view.layer.mask = maskLayer;     
[self.view addSubview:view];

技术分享

左上和右下

此方法可以适用很多种视图,比如UIViewUILabelUIImageViewUIButton等。

iOS - 指定视图的圆角个数-b

标签:

原文地址:http://www.cnblogs.com/isItOk/p/5891139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!