79234974

Date: 2024-11-28 18:17:27
Score: 0.5
Natty:
Report link

Use NSButton when AppKit, or UIButton when UIKit:

override func viewDidLoad() {
    super.viewDidLoad()
    let button = NSButton()
    button.title = "My Button"
    self.view.addSubview(button)
    button.frame = CGRect(x: 0, y: 0, width: 100, height: 30)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Maxim Rysevets