Guest User

Untitled

a guest
Nov 17th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import Cocoa
  2.  
  3. class ViewController: NSViewController, NSTextFieldDelegate {
  4. @IBOutlet weak var textField: NSTextField!
  5. override func viewDidLoad() {
  6. super.viewDidLoad()
  7. textField.delegate = self
  8. }
  9. override func controlTextDidEndEditing(_ obj: Notification) {
  10. DispatchQueue.main.async {
  11. self.textField.window?.makeFirstResponder(nil)
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment