码迷,mamicode.com
首页 > 其他好文 > 详细

设置UIButton一侧圆角

时间:2017-03-09 18:21:21      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:span   class   ott   sel   bounds   shape   pat   frame   erb   

UIButton * button =[UIButton buttonWithType:UIButtonTypeSystem];
[self.view addSubview:button];//一定要先添加到视图上
button.frame=CGRectMake(100, 100, 100, 40);
button.backgroundColor=[UIColor blueColor];

UIBezierPath *maskPath=[UIBezierPath bezierPathWithRoundedRect:button.bounds byRoundingCorners:UIRectCornerTopRight|UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];
CAShapeLayer *maskLayer=[[CAShapeLayer alloc]init];
maskLayer.frame=button.bounds;
maskLayer.path=maskPath.CGPath;
button.layer.mask=maskLayer;

设置UIButton一侧圆角

标签:span   class   ott   sel   bounds   shape   pat   frame   erb   

原文地址:http://www.cnblogs.com/akiha/p/6526783.html

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