我花了很多时间研究,但我找到了一个可行的解决方案。不是最优雅的,但工作。
我发现最好的方法是将事件监视器添加到 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 进行了此操作),让您可以轻松地对“活动窗格”内发生的任何更改做出反应。
欢迎任何更优雅/简单的解决方案!