Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSToolbar: how do I initialise with a selected item?

I have a Mac OS application with a preferences window with a NSToolbar on it.

I have also a custom subview under it and other 3 custom views that are loaded inside the first one when the user clicks on one of the options.

So far, so good. Now I realised the first item is not selected by default when the window is loaded.

I see no options in the inspectors, except the "selectable", which I used. But there is no "selected". Should I do it programmatically? How?

like image 380
Apollo Avatar asked Jun 12 '12 20:06

Apollo


1 Answers

NSToolbar has a -setSelectedItemIdentifier: method that you can use in your -windowDidLoad method.

like image 170
sbooth Avatar answered Nov 06 '22 06:11

sbooth