I had a problem finding out who the NSTextfield focuses NSTextfield .
I am creating a multilingual form and have several NSTextfield for data entry. I have to change the text input source for some of the NSTextfields during data entry, and I need this to happen automatically.
I can currently change the input source, as I mentioned here without any problems.
The problem I am facing is to change the original source when the NSTextfield object becomes focused. If I use the delegate method controlTextDidBeginEditing: it changes the original input after entering the first letter. This means that I am losing the first word that I typed in the corresponding language.
Is there any delegate to find him?
source share