I try to do some treatment when a NSComboBox looses first responder status, and hence gets "resignFirstResponder", however my treatment should happen only when the combobox really loose the first responder status, not when the internal NSTextView used to implement the text of the combobox itself gets the first responder status.
Is there an official way to detect that the first responder status went from the NSComboBox to its inner NSTextView? Can I get a pointer to that NSTextView? and maybe set its delegate?
Regards