I have NSMenu in the Mac status bar, inside it I have NSMenuItems loading and user view. Inside the user view, I have an NSTextField. I want to focus on NSTextField when the menu opens, as in the Spotlight menu so that the user can immediately enter text.
I tried several methods, including:
[myTextField becomeFirstResponder]
and
[myTextField selectText: self];
[[myTextField currentEditor] setSelectedRange:NSMakeRange([[myTextField stringValue] length], 0)];
but none of them work.
Thanks Alex
source
share