< How to respond to view lifecycle events: onAppear() and onDisappear() | How to control which view is shown when your app launches > |
Updated for Xcode 14.2
SwiftUI makes it easy to add keyboard shortcuts for devices that support it, such as iPadOS and macOS, all using the keyboardShortcut()
modifier.
There are three ways you’ll want to use this modifier, so let’s start with the most basic: attaching a key to an existing action. For example, if we had a log in button and wanted to trigger its behavior when the user pressed Cmd+L we could do this:
Button("Log in") {
print("Authenticating…")
}
.keyboardShortcut("l")
Download this as an Xcode project
Note that we don’t need to specify that we mean Cmd+L, because SwiftUI assumes the Command key is used unless we specify otherwise. If you run that code sample on an iPad, you’ll see that holding down the Cmd key brings up the keyboard shortcuts overlay, showing “Cmd+L Login” already – SwiftUI automatically figured out what our button did and made it available.
The second way to use keyboardShortcut()
is to specify which modifier keys you actually want. As an example, this creates two more buttons, one using Shift+R to trigger a Run button, and another for Ctrl+Opt+Cmd+H to trigger a Home button:
VStack {
Button("Run") {
print("Running…")
}
.keyboardShortcut("r", modifiers: .shift)
Button("Home") {
print("Going home")
}
.keyboardShortcut("h", modifiers: [.control, .option, .command])
}
Download this as an Xcode project
That shows you how to select one custom modifier, and how to select several modifiers at the same time.
The third and final way to use keyboardShortcut()
is with one of its built-in keys, which are useful for hard to type keys such as Escape and arrows, and also for semantic keys, such as a cancellation action and a default action. Semantic keys are really useful – every time you’ve pressed Return to accept the default action of an alert, or pressed Escape to cancel an action, you’ve used semantic keys.
So, this creates a button with a default action shortcut, meaning that pressing Return will trigger it:
Button("Confirm Launch") {
print("Launching drone…")
}
.keyboardShortcut(.defaultAction)
Download this as an Xcode project
SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.