Question

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

Was it helpful?

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
}

OTHER TIPS

In IB, go to the window's attributes inspector and make sure that "Released when closed" isn't checked.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top