I want to highlight the selected NSToolbarItem like e.g. in Adium (see screenshot).

Is there an easy way? If not, tell me the difficult one. =)
|
1
|
|
|
|
|
|
To expand upon Chuck's answer, you simply need to make your controller the delegate of your NSToolBar and implement the toolbarSelectableItemIdentifiers: delegate method in it. For example, the following implementation will let you retain the selection highlight on every toolbar item except for the one labeled "Inspect":
I cache the allIdentifiers array in an instance variable when I do something like this, so that I only have to do the array construction once. |
||
|
|
|
|
See Selectable Toolbar Items in the Cocoa documentation. |
||
|
|