首页 > 其他 > 详细

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

时间:2016-06-07 12:48:34      阅读:238      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!