Hey,
Im creatng an app that uses the toolbar. The toolbar code I am using is from the example SimpleToolbar,
Anyway, I have 2 menu items that are not enabled, but I THINK I have found the code to make them enabled, here it is:
- (BOOL) validateToolbarItem: (NSToolbarItem *) toolbarItem {
BOOL enable = NO;
if ([[toolbarItem itemIdentifier] isEqual: SaveDocToolbarItemIdentifier]) {
enable = [self isDocumentEdited];
} else if ([[toolbarItem itemIdentifier] isEqual: NSToolbarPrintItemIdentifier]) {
enable = YES;
}
return enable;
}
This is for a save button, but what I want to do is just have the icon enabled from launch, how would I edit this code to do that? I don't need any special when it should be enabled, it should just be enabled from launch.
Thanks
Oliver