How can we get our NSView in the top of all the NSWindows of the screen

How can we get our NSView in the top of all the NSWindows of the screen?

Accepted Reply

window?.level = NSWindow.Level(rawValue: NSWindow.Level.RawValue(kCGAssistiveTechHighWindowLevel))

Replies

window?.level = NSWindow.Level(rawValue: NSWindow.Level.RawValue(kCGAssistiveTechHighWindowLevel))

Ubbujkkl