I have a menu with several items created in interface builder. It looks fine there and 'enabled' is checked.
But when I run application, all menu items are grayed out.

I've checked isEnabled, it returns true.

Also, menu items created programmatically (with initWithTitle and without interface builder) work just fine.

Am I missing something here? I'm really quite new to OSX development (in fact, this is my first day).
Thank you

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In case somebody might google this out and benefit, 'Action' method was declared without :(id)sender parameter:

-(IBAction) quit;

Strangely, setAction method in NSMenuItem ate it and didn't complain. Oh well.

link|improve this answer
If you passed quit as the action selector, I would have expected that to work. If you passed quit:, that's why: quit: is a different method from the quit (no :) method you implemented. quit, quit:, quit::, and quit:inAHuff: are all different selectors. – Peter Hosey Feb 3 '11 at 18:09
feedback

Ah, the plague of using NSMenu...

Check out <NSMenuValidation>.

Usually the implementation will be as simple as:

- (BOOL)validateMenuItem:(NSMenuItem *)menuItem {
  return [menuItem isEnabled];
}
link|improve this answer
Thanks! With some fiddling, I've tracked down the root cause myself, but +1 for the useful information. – Nikita Rybak Feb 2 '11 at 17:39
1  
I don't think this will satisfy the menu item if the target does not respond to the action. – Peter Hosey Feb 3 '11 at 18:11
feedback

Your Answer

 
or
required, but never shown

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