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
parent f4e71b41a1
commit 1e67587ed5

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()