Allow ImageViewController to be closed with the space key on physical keyoard for iOS.

This commit is contained in:
Ethan Wong 2023-04-22 20:13:41 +08:00 committed by Brent Simmons
parent 711eeddecc
commit bfe63c4e19

View File

@ -25,6 +25,16 @@ class ImageViewController: UIViewController {
return imageScrollView.zoomedFrame
}
override var keyCommands: [UIKeyCommand]? {
return [
UIKeyCommand(
title: NSLocalizedString("Close Image", comment: "Close Image"),
action: #selector(done(_:)),
input: " "
)
]
}
override func viewDidLoad() {
super.viewDidLoad()