gpt4 book ai didi

swift - 检测事件的 NSSplitViewItem

转载 作者:行者123 更新时间:2023-11-30 11:01:14 26 4
gpt4 key购买 nike

我有一个带有(几个)SplitViewItems 的SplitView。 Echt SplitViewItem 有一个 ViewController,其中包含多个 View 。

我需要检测哪个 SplitViewItems 具有用户的焦点。

例如:如果用户单击任何控件/ View (或以任何其他方式导航到它),则包含该 View 项的 SplitViewItem 的背景应该更改。由于我不知道 SplitViewItem 中的 ViewController 中将包含哪些/多少个 View ,因此我更愿意检测哪个 SplitViewItem 是 SplitViewController 中的“事件” View 。

我一整天都在寻找解决方案。我找不到任何类型的通知,也找不到解决管理响应者链的方法。

有人能给我指出正确的方向吗?非常感谢(快速)代码示例。

谢谢!

最佳答案

我花了相当多的研究,但我找到了一个可行的解决方案。不是最优雅的,但很有效。

我发现最好的方法是将事件监视器添加到 SplitViewController。

在viewDidLoad()中添加以下代码:

    NSEvent.addLocalMonitorForEvents(matching: [.keyDown, .leftMouseDown, .flagsChanged]) { [unowned self] (theEvent) -> NSEvent? in
let eventLocation = theEvent.locationInWindow
let numberOfSplitViews = self.splitViewItems.count
var activeIndex: Int?

for index in 0..<numberOfSplitViews {
let view = self.splitViewItems[index].viewController.view
let locationInView = view.convert(eventLocation, from: nil)
if ((locationInView.x > 0) && (locationInView.x < view.bounds.maxX) && (locationInView.y > 0) && (locationInView.y < view.bounds.maxY)) {
activeIndex = index
break
}
}

switch theEvent.type {
case .keyDown:
print("key down in pane \(activeIndex)")
self.keyDown(with: theEvent)
case .leftMouseDown, .rightMouseDown:
print("mouse down in pane \(activeIndex)")
self.mouseDown(with: theEvent)
case .flagsChanged:
print("flags changed in pane \(activeIndex)")
self.flagsChanged(with: theEvent)
default:
print("captured some unhandled event in pane \(activeIndex)")
}
return theEvent
}

(您可能需要根据自己的喜好调整相关事件。此外,您可能需要使用 NSEvent.removeMonitor(_:) 删除监视器)。

此外(超出了这个问题的范围),您可能还需要考虑使变量 activeIndex 成为可观察的类变量(我使用 RxSwift 完成此操作),以便您可以轻松地对“事件 Pane ”内发生的任何更改使用react'。

欢迎任何更优雅/简单的解决方案!

关于swift - 检测事件的 NSSplitViewItem,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53342848/

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