When a UIAlertController is presented, all UIKeyCommands from the responder chain are hidden besides the UITabBarController. The only key commands that work are: Escape, to dismiss the alert, and Return, to select the preferred action.
I want other commands to be available while the UIAlertController is shown, but this doesn't seem possible. I tried calling resignFirstResponder()
on the alert controller and calling becomeFirstResponder()
on another view controller, which does not work.
Is there a way to get around this limitation?