How do I disable the "Use small size" option in the toolbar? I am using Xcode 4.
(That's the option that appears when users go to customize the Toolbar.)
|
How do I disable the "Use small size" option in the toolbar? I am using Xcode 4. (That's the option that appears when users go to customize the Toolbar.)
| ||||
|
feedback
|
|
You could subclass If you're instantiating the toolbar in Interface Builder then make sure you assign your subclass to the toolbar in the nib.
This won't remove the checkbox from the customize panel but it will prevent it from doing anything. There's not really a supported way to remove the checkbox. This does work but it's pretty hacky:
| |||||||||
feedback
|
|
Thanks to Rob Keniger for the excellent start. If you can have your custom toolbar as a delegate of your window, you can avoid having "Use small size" visible by getting at the sheet before it is displayed on screen. Do this by implementing [NSToolbar window:willPositionSheet:usingRect:] in the custom toolbar class. Elsewhere in your code, you'll need to do:
Here's the updated custom toolbar class:
Hope you find this useful. | |||
|
feedback
|