If you are using Xcode 4.3.2, open the XIB file, double-click an item in the toolbar to select NSSearchField (NSToolbarItem is selected with one click). In the Attribute Inspector, check the box next to "Unsubscribe from the first responder" and Bob your uncle.
The trick here is that NSToolbarItem cannot refuse the first responder as a whole. However, the NSSearchField (whose ancestor is NSToolbarItem) may refuse.
source share