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

圆形头像制作

时间:2016-03-21 18:26:30      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

//1.设置圆角
    self.imageView.layer.masksToBounds = YES;
//2.设置圆形图案半径
    self.imageView.layer.cornerRadius = self.imageView.layer.bounds.size.width *0.5;
//3.设置边框颜色
    self.imageView.layer.borderColor = [UIColor redColor].CGColor;
//4.设置边框宽度
    self.imageView.layer.borderWidth = 5;

圆形头像制作

标签:

原文地址:http://www.cnblogs.com/liuwfuang96/p/5302830.html

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