给button添加边框和圆角
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给button添加边框和圆角相关的知识,希望对你有一定的参考价值。
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake(100, 100, 50, 50);
btn.backgroundColor = [UIColor redColor];
btn.layer.cornerRadius = 25;//圆角半径
btn.clipsToBounds = YES;//裁剪
btn.layer.borderColor = [UIColor blueColor].CGColor;//边框颜色
btn.layer.borderWidth = 1;//边框的宽度
[self.view addSubview:btn];
以上是关于给button添加边框和圆角的主要内容,如果未能解决你的问题,请参考以下文章
Swift开发教程--设置圆角Button和圆角边框TextView
Swift开发教程--设置圆角Button和圆角边框TextView