You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Tobias Bocanegra (JIRA)" <ji...@apache.org> on 2015/11/26 07:45:11 UTC

[jira] [Created] (CB-10087) OSX: facilitate easy preferences menu item handling

Tobias Bocanegra created CB-10087:
-------------------------------------

             Summary: OSX: facilitate easy preferences menu item handling
                 Key: CB-10087
                 URL: https://issues.apache.org/jira/browse/CB-10087
             Project: Apache Cordova
          Issue Type: Improvement
          Components: OSX
    Affects Versions: Master
            Reporter: Tobias Bocanegra
            Assignee: Tobias Bocanegra


currently it is not easy possible to capture the applications preferences menu item, except via the title, which is a bit unstable.

either we define a tag value or a predefined action selector that can be detected. for example:

{noformat}
    NSMenu* appMenu = self.viewController.window.menu;
    NSMenu* mainMenu = [appMenu itemAtIndex:0].submenu;

    for (NSMenuItem* item in mainMenu.itemArray) {
        if (item.action == @selector(onPreferences:)) {
            // adjust target to use this plugin
            item.target = self; 
            break;
        }
    }
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org