Skip to content

Instantly share code, notes, and snippets.

@luoph
Last active August 29, 2015 14:10
Show Gist options
  • Select an option

  • Save luoph/61cf6e9569abcff4d0d7 to your computer and use it in GitHub Desktop.

Select an option

Save luoph/61cf6e9569abcff4d0d7 to your computer and use it in GitHub Desktop.
NSMenuItem Key Binding
// create a cmd+f key shortcut
NSMenuItem *actionMenuItem = [[NSMenuItem alloc] initWithTitle:@"Quick Find" action:@selector(doMenuAction) keyEquivalent:@"f"];
actionMenuItem.keyEquivalentModifierMask = NSCommandKeyMask;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment