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

用贝赛尔曲线把图片, 按钮, label 绘成圆 或圆角矩形

时间:2016-06-07 12:49:17      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:

    //创建圆形遮罩,把用户头像变成圆形

/*

*CGPointMake(35, 35)  是绘图的中心点,  如果想把控件居中绘圆, 一般用控件的中心点,   radius 是圆半径   startAngle是圆周 圆的一周就是2*m_pi

*/

//    UIBezierPath* path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(35, 35) radius:35 startAngle:0 endAngle:2 * M_PI clockwise:YES];

    

    //创建圆角矩形遮罩,把用户头像变成圆角矩形

//    UIBezierPath* path =[UIBezierPath bezierPathWithRoundedRect:self.d_teacherIcon.frame cornerRadius:10];

    CGRect rect = self.d_teacherIcon.frame;// button ,imageView, label 等控件的尺寸

/*

*CGRectMake(0, 0, rect.size.width, rect.size.height)   , 0,0 是绘图的左上角坐标,  width, height 是绘图的宽高,10 是圆角

*/

    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, rect.size.width, rect.size.height) cornerRadius:10];

    

    

    CAShapeLayer* shape = [CAShapeLayer layer];

    shape.path = path.CGPath;

    self.d_teacherIcon.layer.mask = shape;

    

用贝赛尔曲线把图片, 按钮, label 绘成圆 或圆角矩形

标签:

原文地址:http://www.cnblogs.com/balopy/p/5566318.html

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