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

iOS-让button按钮显示成圆角

时间:2018-06-01 22:20:54      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:let   uibutton   str   长方形   atomic   width   ios   图片   idt   

这里用到的属性layer是CALayer类型,属于UIView,也就是说所有UIView的子类都能使用这个属性。

@property (strong, nonatomic) IBOutlet UIButton *button;

//圆形
//先设置按钮宽和高相等
button.layer.cornerRadius = button.frame.size.width/2;
button.layer.masksToBounds = YES;

//圆角长方形
button.layer.cornerRadius = button.frame.size.Height/2;
button.layer.masksToBounds = YES;

注意:
1.cornerRadius拐角半径,只对背景颜色和按钮边框有效,对按钮中的图片无效。
2.masksToBounds使按钮中的图片一起被裁减为圆角,如果按钮中有图片需设置值为YES。

 

iOS-让button按钮显示成圆角

标签:let   uibutton   str   长方形   atomic   width   ios   图片   idt   

原文地址:https://www.cnblogs.com/cccliche/p/9123547.html

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