gpt4 book ai didi

ios - 当中间 viewController 包含两个 viewController 时,UIKeyCommands 不起作用

转载 作者:IT王子 更新时间:2023-10-29 05:31:34 27 4
gpt4 key购买 nike

我认为这是一个与 UIKeyCommands、ViewController 和/或响应器的层次结构相关的重要问题。

在我的 iOS 9.2 应用程序中,我有一个名为 NiceViewController 的类,它定义了 UIKeyCommand,它会导致向控制台打印一些内容。

这是 NiceViewController:

class NiceViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()

let command = UIKeyCommand(input: "1", modifierFlags:UIKeyModifierFlags(),
action: #selector(keyPressed), discoverabilityTitle: "nice")

addKeyCommand(command)
}

func keyPressed() {
print("works")
}
}

当我将 NiceViewController 作为唯一的 child 添加到我的主视图 Controller 时,一切正常 - 在外部键盘(在模拟器中使用时使用物理键盘)上按下按钮“1”就像一个魅力。但是,当我向主视图 Controller 添加第二个 View Controller 时,NiceViewController 中定义的 UIKeyCommands 停止工作。

我很想知道为什么会这样,以及如何确保我的主视图 Controller 有多个 subview Controller 不会阻止这些 subview Controller 处理 UIKeyCommands

这是我的主视图 Controller :

class MainViewController: UIViewController {
let niceViewController = NiceViewController()
let normalViewController = UIViewController()

override func viewDidLoad() {
super.viewDidLoad()


self.view.addSubview(niceViewController.view)
self.addChildViewController(niceViewController)

self.view.addSubview(normalViewController.view)
// removing below line makes niceViewController accept key commands - why and how to fix it?
self.addChildViewController(normalViewController)

}
}

最佳答案

我不认为这是 UIKeyCommands 的问题

在 iOS 中,一次只有一个 View Controller 可以管理键命令。所以在你的设置中,你有一个容器 View Controller 和几个 subview Controller 。您应该告诉 iOS 您希望 NiceViewController 控制按键命令。

定义第一响应者

在高层次上,为了支持按键命令,您不仅必须创建一个 UIKeyCommand 并将其添加到 View Controller 中,还必须使您的 View Controller 成为第一响应者以便它能够响应关键命令。

首先,在任何你想使用键盘命令的 View Controller 中,你应该让 iOS 知道该 Controller 能够成为第一响应者:

override func canBecomeFirstResponder() -> Bool {
// some conditional logic if you wish
return true
}

接下来,您需要确保 VC 确实成为第一响应者。如果任何 VC 包含某种成为响应者(或类似的东西)的文本字段,则该 VC 可能会自己成为第一响应者,但您始终可以在 NiceViewController 上调用 becomeFirstResponder() 使其成为第一响应者,除其他外,响应关键命令。

请参阅 UIKeyCommand 的文档:

The system always has the first opportunity to handle key commands. Key commands that map to known system events (such as cut, copy and paste) are automatically routed to the appropriate responder methods. For other key commands, UIKit looks for an object in the responder chain with a key command object that matches the pressed keys. If it finds such an object, it then walks the responder chain looking for the first object that implements the corresponding action method and calls the first one it finds.

注意:当某人正在与另一个 VC 交互时,它是第一响应者NiceViewController 不能同时是第一响应者时间,因此您可能还需要在其他 VC 上执行一些关键命令。

为什么这并不总是必要的

当只有一个 VC 出现时,iOS 似乎假定它会是第一响应者,但是当你有一个容器 VC 时,iOS 似乎将容器视为第一响应者,除非有一个 child 说它能够成为第一响应者。

关于ios - 当中间 viewController 包含两个 viewController 时,UIKeyCommands 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39216042/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com