Skip to content

Instantly share code, notes, and snippets.

@n3tr
Created November 5, 2016 12:44
Show Gist options
  • Save n3tr/dd567015108d4db95d1a1508eb231150 to your computer and use it in GitHub Desktop.
Save n3tr/dd567015108d4db95d1a1508eb231150 to your computer and use it in GitHub Desktop.
counterLabel
// ViewController.swift
class ViewController: NSViewController {
@IBOutlet weak var counterLabel: NSTextField!
override func viewDidLoad() {
super.viewDidLoad()
counterLabel.bind("stringValue", to: self, withKeyPath: #keyPath(currentCounter), options: nil)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment