Swift UIKit 组件-UIButton(按钮)
预览:
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let MyButton = UIButton(type: .system)
MyButton.frame = CGRect(x: 135, y: 50, width: 160, height: 35)
MyButton.setTitle("Button(按钮)", for: .normal)
MyButton.configuration = .filled()
view.addSubview(MyButton)
// Do any additional setup after loading the view.
}
}
这篇文章如同一幅色彩斑斓的画卷,每一笔都充满了独特的创意。
?情感共鸣类?
内容的丰富性和深度让人仿佛置身于知识的海洋,受益匪浅。