I programmatically create an NSMenuItem and it is disabled. If I override the validateMenuItem: method and return YES for all items, the menu item works fine.

Why would it not be enabled when I tell the menu to autoEnableItems and dont override the validateMenuItem: method?

NSMenuItem *menuItem = [[NSMenuItem alloc] initWithTitle:label action:@selector(methodToLogSomething:) keyEquivalent:@""];
menuItem.representedObject = representedObject;
[menuItem setTarget:self];
[menu insertItem:menuItem atIndex:[[menu itemArray] count]-1];
[menuItem release];
    [menu setAutoenablesItems:YES];
link|improve this question

76% accept rate
feedback

1 Answer

up vote 5 down vote accepted

It appears that menu items stay disabled if their target and action are not setup right. If you for get your : at the end of the selector.

link|improve this answer
Thanks for posting your answer. This helped me!!! – livingtech Nov 18 '11 at 19:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.