Skip to content

Instantly share code, notes, and snippets.

@ethanbing
Created July 11, 2013 02:21
Show Gist options
  • Save ethanbing/5972004 to your computer and use it in GitHub Desktop.
Save ethanbing/5972004 to your computer and use it in GitHub Desktop.
Mac判断按下空格键
NSString* keysPressed = [theEvent characters];
if ( [keysPressed isEqualToString:@" "] )
{
if(theEvent.type==NSKeyDown)
NSLog(@"spaceDown");
if(theEvent.type==NSKeyUp)
NSLog(@"spaceUp");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment