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

iOS开发学习-给圆形图片添加边框

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

标签:

        imageView.layer.cornerRadius = imageView.bounds.size.width * 0.5;// 设置圆角刚好是自身宽度的一半,就刚好是圆形

        imageView.layer.masksToBounds = YES;

        imageView.layer.borderWidth = 1; //边框宽度

        imageView.layer.borderColor = [[UIColor grayColor] CGColor];//边框颜色

iOS开发学习-给圆形图片添加边框

标签:

原文地址:http://www.cnblogs.com/KevinBin/p/5626378.html

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