I try to dynamically update the text of another view with the changing user input of an NSTextField
. The following approach does not work since it is for iOS
. Is there something similar for osx
NSTextField
available?
self.equationTextField.addTarget(self, action: #selector(ViewController.textFieldDidChange(_:)), for: UIControlEvents.editingChanged)
//build error: "Use of unresolved identifier 'UIControlEvents'"
Thanks!
You will have to make use of NSControlTextEditingDelegate. Connect the NSTextField
delegate
to your ViewController if you are using storyboard. If you create it programmatically can just set it in code like this:textfield.delegate = self
inviewDidLoad()
In the
NSControlTextEditingDelegate
there is acontrolTextDidChange
that you can make use of to get notification when text is edited.