码迷,mamicode.com
首页 > 编程语言 > 详细

Swift 圆角设置

时间:2016-09-30 15:50:27      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:

故事面板中设置圆角(storyboard)

Key Path  layer.borderWidth(边框宽度)  layer.cornerRadius(圆角弧度)  layer.borderColor(边框颜色)

Type         Number               Number                Color

Value    2                 5                  (选择颜色)

 

同理 swift方法

self.view.layer.borderColor = UIColor.grayColor().CGColor;

self.view.layer.borderWidth = 1;

self.view.layer.cornerRadius = 8;

 

无论是TextView  Button View 都一样,如有不对请各位老爷指正!!!

Swift 圆角设置

标签:

原文地址:http://www.cnblogs.com/sumx/p/5923657.html

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