ios中设置UIButton圆角,添加边框

Posted 在一起的浅蓝色

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios中设置UIButton圆角,添加边框相关的知识,希望对你有一定的参考价值。


//例如: UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRectMake(50,50,100,40); button.backgroundColor = [UIColor blueColor];
//关键语句 button.layer.cornerRadius = 2.0;//2.0是圆角的弧度,根据需求自己更改 button.layer.borderColor = [UIColor blackColor];//设置边框颜色 button.layer.borderWidth = 1.0f;//设置边框颜色

以上是关于ios中设置UIButton圆角,添加边框的主要内容,如果未能解决你的问题,请参考以下文章

iOS中设置圆角的方式

在带有圆角的 UIButton 中添加底部边框

Swift 在情节提要中设置 UIButton setBorderColor

底部的圆角 CoreGraphics iOS

圆角渐变 UIButton iOS

如何在 ios 中使用图案图像在可扩展的 tableViewCell 中设置 UIButton