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

IOS方形头像如何变成圆形

时间:2015-05-17 18:11:46      阅读:439      评论:0      收藏:0      [点我收藏+]

标签:

方法一:直接使用UIView对应图层的cornerRadius

        self.layer.cornerRadius     = CGRectGetWidth(self.bounds)/2.f;

        self.clipsToBounds          = YES;

方法二:使用图层遮罩

    CAShapeLayer* mask = [CAShapeLayer layer];

        CGFloat width = self.frame.size.width;

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

        mask.path = path.CGPath;

        self.layer.mask = mask;

IOS方形头像如何变成圆形

标签:

原文地址:http://www.cnblogs.com/guoxiaoqian/p/4509953.html

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