我目前有:
let window = NSWindow(contentRect: NSRect(x: 300, y: 300, width: 200, height: 200), styleMask: [.borderless], backing: .buffered, defer: true)
window.backgroundColor = NSColor.green
window.level = .floating
window.collectionBehavior = [.stationary, .canJoinAllSpaces, .fullScreenAuxiliary]
window.makeKeyAndOrderFront(nil)
当前行为: 当空间发生变化(在全屏窗口之间移动)时,窗口相对于 desktop/space 移动。
预期行为: 我希望窗口的行为与 macOS 中的通知窗口非常相似,即使活动空间发生变化,窗口也会“浮动”在屏幕上方。