Showing and hiding an NSWindow programatically

```objectivec // Show [myWindow makeKeyAndOrderFront:self]; [NSApp activateIgnoringOtherApps:YES]; // Hide [myWindow orderOut:self]; ```