I have a view with a nssearchfield a nstableview and a nsmatrix with three radiobuttons. Using delegates i change the selected radiobutton when the searchfield is the firstresponder and the user press tab, that works perfectly but what i want is that the searchfield don't loose the firstresponder when the user press tab

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can sub class NSSearchField and add this function

- (BOOL)resignFirstResponder {
    return NO;
}

It will refuse to relinquish first responder status.

Another way is catch the windowDidUpdate notification. These are sent whenever anything changes, including change of focus, so you can check for the firstResponder and make it become first responder again.

[searchField becomeFirstResponder];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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