orderOut
orderOut is a method in Apple's AppKit framework, implemented by NSWindow (and NSPanel) on macOS. It is used to hide a window from the screen by removing it from the window ordering of the application without closing or deallocating the window. The window remains in memory and can be shown again later.
In practice, orderOut is commonly called on a window object, often in response to a user action
orderOut is distinct from other window-related actions. For example, minimizing a window using miniaturize places the
In Swift and Objective-C, orderOut is part of the NSWindow API. It is specific to macOS app