Last active
August 29, 2015 14:07
-
-
Save Kjuly/970554ac6c777100fe26 to your computer and use it in GitHub Desktop.
iOS external keyboard action, like RETURN button of the external keyboard, code sample below
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (NSArray *)keyCommands | |
{ | |
return @[[UIKeyCommand keyCommandWithInput:@"\r" | |
modifierFlags:0 | |
action:@selector(didPressExternalKeyboardReturnButton)]]; | |
} | |
- (void)didPressExternalKeyboardReturnButton | |
{ | |
// do ur action here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment