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.
Ah, the plague of using NSMenu...
NSMenu
Check out .
Usually the implementation will be as simple as:
- (BOOL)validateMenuItem:(NSMenuItem *)menuItem { return [menuItem isEnabled]; }