Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect outlets and actions in Swift / MacOS programaticly

I have a simple example. I connected the left button1 and label1 with ctrl-draging it to the contollerclass.

How can I do the same for the right button2 label2 programaticly (without ctrl-draging)

Xcode

That´s my code:

class ViewController: NSViewController {

  @IBOutlet weak var label1: NSTextField!  //connected with ctrl-drag
  @IBOutlet weak var button1: NSButton!    //connected with ctrl-drag

  @IBOutlet weak var label2: NSTextField!  //not yet connected
  @IBOutlet weak var button2: NSButton!    //not yet connected

  @IBAction func button1Pressed(_ sender: Any)  //connected with ctrl-drag
  { label1.stringValue = "button-I"
    button1.title = "pressed"
  }

  @IBAction func button2Pressed(_ sender: Any)  //not yet connected
  { label2.stringValue = "button-II"
    button2.title = "pressed"
  }
  override func viewDidLoad() {
    super.viewDidLoad()
  }
}
like image 838
mica Avatar asked Oct 29 '22 07:10

mica


1 Answers

If you want to use storyboard and lay out all your elements there, you can't really avoid the ctrl drag (or just drag if you open the connections inspector on the right).

You could however create your second button programmatically in code and not use the storyboard at all for it. Then programmatically add your constraints too.

You can also add the action of the button programmatically (using addTarget) if you would like but that would require at least the IBOutlet to be setup in order to have a reference to the button.

like image 169
Prientus Avatar answered Nov 15 '22 06:11

Prientus