How to connect outlets and actions in Swift / MacO

2019-03-01 06:43发布

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()
  }
}

1条回答
Summer. ? 凉城
2楼-- · 2019-03-01 07:24

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.

查看更多
登录 后发表回答