我正在尝试创建一个像 Spotlight 这样的窗口。与 Spotlight 中一样,它应该在单击背景时隐藏。我尝试使用 NSWindow 未成功,但我被引导相信使用 NSPanel 可以解决问题。但是,即使使用 NSPanel,窗口也不会隐藏。这是我正在使用的代码。
let panel = NSPanel(contentRect: CGRect(x: 0, y: 0, width: 200, height: 200), styleMask: [.titled, .nonactivatingPanel], backing: .buffered, defer: true)
panel.level = .mainMenu
panel.collectionBehavior = [.canJoinAllSpaces, .fullScreenAuxiliary]
panel.orderFrontRegardless()