Button
Anonymous
swift
03/12/2025 1:39 PM
432 B
23
Indexable
class ViewController: UIViewController {
let button = UIButton()
override func viewDidLoad() {
super.viewDidLoad()
button.setTitle("Touch me", for: .normal)
button.addTarget(self, action: #selector(buttonTapped), for: .touchUpInside)
}
@objc private func buttonTapped() {
}
}
Editor is loading...
Leave a Comment