How to show full screen window programmatically in macOS
Issue #242
1 | let window = NSWindow(contentRect: mainScreen.frame, styleMask: .borderless, backing: .buffered, defer: false) |
and then later hide it
1 | window.orderOut(NSApp) |
Issue #242
1 | let window = NSWindow(contentRect: mainScreen.frame, styleMask: .borderless, backing: .buffered, defer: false) |
and then later hide it
1 | window.orderOut(NSApp) |