In iOS you can use textFieldName.isFirstResponder and it tells you if the control has focus. Is there a way on macOS Cocoa to check which NSTextField has the current focus? .isFirstResponder is not available.```if nsTextFieldCity.isFirstResponder == true { // Run Code}```Thank you.