menu item is enabled, but still grayed out

前端 未结 3 577
-上瘾入骨i
-上瘾入骨i 2021-02-07 12:44

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.

相关标签:
3条回答
  • 2021-02-07 13:03

    Remember to set your menu item's target and ensure that said target implements the menu item's action method.

    menuItem.target = self;
    
    • If the menu item’s target is set, then NSMenu first checks to see if that object implements the item’s action method. If it does not, then the item is disabled. If the target does implement the item’s action method, NSMenu first checks to see if that object implements validateMenuItem: or validateUserInterfaceItem: method. If it does not, then the menu item is enabled. If it does, then the enabled status of the menu item is determined by the return value of the method.

    • If the menu item’s target is not set and the NSMenu object is not a contextual menu, then NSMenu uses the responder chain to determine the target. If there is no object in the responder chain that implements the item’s action, the item is disabled.

    https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/MenuList/Articles/EnablingMenuItems.html

    0 讨论(0)
  • 2021-02-07 13:08

    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.

    0 讨论(0)
  • 2021-02-07 13:16

    Ah, the plague of using NSMenu...

    Check out <NSMenuValidation>.

    Usually the implementation will be as simple as:

    - (BOOL)validateMenuItem:(NSMenuItem *)menuItem {
      return [menuItem isEnabled];
    }
    
    0 讨论(0)
提交回复
热议问题