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

ios 给控件选择性设置圆角

时间:2015-09-09 22:37:34      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:

 UILabel * label =[[UILabel alloc]initWithFrame:CGRectMake(100, 200, 100, 100)];
    
    label.backgroundColor=[UIColor cyanColor];
    [self.view addSubview:label];
    
    //贝塞尔曲线
    UIBezierPath * bezierPath2=[UIBezierPath bezierPathWithRoundedRect:label.bounds byRoundingCorners:UIRectCornerTopRight|UIRectCornerBottomRight cornerRadii:CGSizeMake(10, 10)];
    
    //根据贝塞尔曲线进行边缘描绘 只能进行边缘描绘 不能进行填充
    CAShapeLayer *layer2 =[CAShapeLayer layer];
    
    layer2.path=bezierPath2.CGPath;
    layer2.frame=label.bounds;
    layer2.lineWidth=1;
    
    layer2.lineWidth=1;
    
    label.layer.mask=layer2;

ios 给控件选择性设置圆角

标签:

原文地址:http://www.cnblogs.com/wangbinbin/p/4796107.html

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