Merge pull request #3955 from GetToSet/ethanwong/imageview-spacekey-ios

Allow ImageViewController to be closed with the space key on physical keyoard for iOS.
This commit is contained in:
Brent Simmons
2023-05-13 16:50:52 -07:00
committed by GitHub

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