In my application I have an NSSearchField that is bound to an arraycontroller which performs searches as the user types.

The problem is that the search field never resigns firstresponder-status once it receives it.

What would be the cleanest way of resigning firstresponder status when the user presses Enter or clicks outside of the search field? If possible I would prefer to do as much work as possible in Interface Builder.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

[searchField.window makeFirstResponder:nil]

If you just want to get rid of the focus ring, you can disable it in the NIB.

If you want to resign first responder when the user clicks empty space in the window, you have to use a custom NSView as the window's content view and override mouseDown: to call the above method.

link|improve this answer
Works great. Thank you! – Fabio Russo Jan 9 at 19:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.