September 19, 2013
Before iOS 7, if you had a Bluetooth keyboard attached to your iPad, you could only access modifier keys (Command, Control, etc) through private APIs. You could sneak it in through selector trickery and allegedly Apple would turn a blind eye. Fortunately with iOS 7, there’s now a public API to do this.
First, let’s talk a bit about the Responder Chain. This is how events are managed in iOS. Most of the UIKit
classes you use inherit from UIResponder
which means that you’ll have access to the appropriate methods. This means that you can set the scope for your keyboard shortcuts at any level in the app. I wanted to use have them registered for the entire app, so I subclassed UIApplication
, though you could use a similar approach in a view or the view controller too:
// STWApplication.h
@interface STWApplication : UIApplication {
NSMutableArray *_commands;
}
// STWApplication.m
@implementation STWApplication
// more coming soon
@end
Since we’re subclassing UIApplication
, edit main.m
to tell it that we’re doing so in UIApplicationMain
:
int main(int argc, char *argv[]) {
@autoreleasepool {
NSString *appName = @"STWApplication";
return UIApplicationMain(argc, argv, appName, NSStringFromClass([STWAppDelegate class]));
}
}
Ok, now let’s tell the app what key combinations are valid. iOS 7 adds a keyCommands
property to UIResponder. All we need to do is override that and returning an array of UIKeyCommands
. Since we’re using a UIApplication
subclass, add this in there:
- (NSArray *)keyCommands {
if (!_commands) {
UIKeyCommand *commandF = [UIKeyCommand keyCommandWithInput:@"f"
modifierFlags:UIKeyModifierCommand
action:@selector(handleShortcut:)];
_commands = [[NSMutableArray alloc] initWithArray:@[commandF]];
}
return _commands;
}
Every time a keyboard event is raised, if it matches ⌘F, the selector handleShortcut
will be called on the responder chain. That means you can define that method multiple times and only the most specific will be called. For example, if you defined it in STWApplication
and in the View Controller, the STWApplication
version will never be called. Speaking of handleShortcut
, here it is:
- (void)handleShortcut:(UIKeyCommand *)keyCommand {
NSLog(@"You pressed ⌘F! Good Job!");
}
UIKeyCommand
is pretty neat. The modifierFlags
means that the app can watch for Caps Lock, Shift, Control, Alt/Option, Command, and the Number Pad. Additionally, there are some constants that can be used for special keys like the arrows and Escape. The developer forums also had some people getting access to Tab and Return by looking for \t
and \r
, but I don’t know how well those work.
Also, make sure you aren’t trying to override system shortcuts. Per the docs: “Key commands that map to known system events (such as cut, copy and paste) are automatically routed to the appropriate responder methods.” So don’t do that.
Now, remember how I said “every time a keyboard event is raised”? These events will only happen when a text input is the first responder. This means that if you want to have some fancy global shortcuts (say ⌘F to jump to a search box) you’ll still need to do a trick with UITextField
(or similar). That’s a little beyond the scope of this article, but the gist is add a UITextField to a view, hide it, and make sure it stays first responder when appropriate in order to keep firing off those events.
I for one am psyched that this is now available. It’s definitely more of a power user feature, but those of us who like to use Bluetooth keyboards with our iPads will derive tremendous benefit from it.
Written by Scott Williams who lives and works in sunny Phoenix, AZ. Twitter is also a place.