vote up 0 vote down star

The problem I've got is that when the preferences window is opened and then closed, it will not open again. Why is this happening and how can this be fixed?

EDIT: Just noticed also I've got the same problem with Main Window.

The window is being opened via the menu bar and is in a separate NIB file.

flag

1  
You need to provide more information. How is the window being opened? Is it being released when closed? Is it in its own nib? – Jason Coco May 3 at 19:09
Anyone, Some Help Please? – Joshua May 4 at 8:22
Please, Some Help? – Joshua May 5 at 15:04
1  
Still need more information. What action is the menuitem calling? Is your responder chain intact, or are you doing something odd with it? Are you doing something wrong with memory management concerning the windows? Do you have custom window controllers? When you say you have the same problem with the Main Window, what does that mean? You close the main window and it doesn't open again, what are you expecting? Do you have a window controller for your preferences window, if so what does it look like? I can keep on going, please provide some useful information if you want a useful answer. – Evan May 5 at 16:39
Basically It's Just A Normal Window, Nothing Un-Usual. The menu-item is calling an action to show the Preferences pane, the code I used to do this was from The book cocoa programming for mac os x. – Joshua May 6 at 5:49

2 Answers

vote up 0 vote down check

It sounds like you forgot to set the 'window' outlet of your window controller (in the Nib, the File's Owner) to point to your window. Once you connect its 'window' outlet the window controller's showWindow: method will work.

link|flag
vote up 3 vote down

Hard to say without seeing the code, but one possibility is that you have "Release When Closed" checked for the window in Interface Builder, and you are loading it once, caching it, then expecting to be able to close and re-open it without loading from the nib again.

link|flag
I un-checked the "Release When Closed" check box, but didn't change anything. – Joshua May 3 at 19:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.