objective-ccocoacgkeycode

CGKeyCode table


Is there a table or some kind of utility with which I can find the CGKeyCode of a key? Thanks


Solution

  • - (void)keyDown:(NSEvent *)theEvent {
      NSLog(@"keycode: %hu", [theEvent keyCode]);
    }