swift给按钮设置边框
时间: 2023-06-06 18:09:05 浏览: 207
可以通过UIButton的layer属性,设置按钮的边框样式、颜色和宽度,具体实现方式如下:
按钮.layer.borderWidth = 1.0 // 设置边框宽度为1
按钮.layer.borderColor = UIColor.black.cgColor // 设置边框颜色为黑色
按钮.layer.cornerRadius = 5.0 // 设置圆角半径为5
这样就可以给按钮设置边框了。
相关问题
swift在何时给按钮设置边框
Swift 给按钮设置边框可以在初始化时进行设置,或者在按钮的属性列表中进行设置。以下是示例代码:
在初始化时进行设置
```swift
let button = UIButton(type: .system)
button.frame = CGRect(x: 50, y: 100, width: 100, height: 50)
button.setTitle("按钮", for: .normal)
button.layer.borderWidth = 1.0
button.layer.borderColor = UIColor.black.cgColor;
self.view.addSubview(button)
```
在属性列表中进行设置
```swift
let button = UIButton(type: .system)
button.frame = CGRect(x: 50, y: 100, width: 100, height: 50)
button.setTitle("按钮", for: .normal)
button.layer.borderWidth = 1.0
button.layer.borderColor = UIColor.black.cgColor
button.layer.cornerRadius = 5.0 //设置圆角
self.view.addSubview(button)
```
swift如何在属性列表给按钮设置边框
可以在属性列表中找到Button的Border属性,然后设置为Solid,并选择相应的颜色和宽度来设置边框。代码示例:
```
button.layer.borderWidth = 1.0
button.layer.borderColor = UIColor.black.cgColor
```
阅读全文