UIKeyCommands 不工作

UIKeyCommands not working

我正在尝试将 iPad 的自定义快捷方式添加到我的应用程序。但是,使用下面的代码我看不到它们的工作。当我按下 command 键时,我得到了发现模式,但是当我按下 command+f 时没有任何反应。我做错了什么?

#pragma mark - UIResponder

- (BOOL)canBecomeFirstResponder {
    return YES;
}

- (NSArray *)keyCommands {
    return @[
         [UIKeyCommand keyCommandWithInput:@"f" modifierFlags:0 action:@selector(backspacePressed:) discoverabilityTitle:@"New message"]
    ];
}

- (void)backspacePressed:(UIKeyCommand *)command {
    NSLog(@"Backspace key was pressed");
}

事实证明,为了能够注册 cmd+f,我需要将 modifierFlags0 更改为 UIKeyModifierCommand

[UIKeyCommand keyCommandWithInput:@"f" modifierFlags:UIKeyModifierCommand action:@selector(backspacePressed:) discoverabilityTitle:@"New message"]