Search code examples
objective-ccocoanswindowhud

Hide and Show HUD Window - Cocoa?


I have a HUD window that has some labels on it, and I want this to show when the user presses a button. I know this is simple, but I can't get it to show again unless I restart my program.

Sincerely,

Kevin


Solution

  • To hide hudWindow:

    - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
        [hudWindow orderOut:nil]; // to hide it
    }
    

    Then on button press:

    - (IBAction)showWindow:(id)sender {
        [hudWindow makeKeyAndOrderFront:nil]; // to show it
    }