标签:
故事面板中设置圆角(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 都一样,如有不对请各位老爷指正!!!
标签:
原文地址:http://www.cnblogs.com/sumx/p/5923657.html