Hey guys, I have some questions about NSWindowController. I have a subclass of NSWindowController that has its own nib. I have another class that has an event that shows the window and loads it like so.
if (!propertiesController){
propertiesController = [[WorldPropertiesController alloc] init];
}
[propertiesController showWindow:self];
It works great the first time but after I close the window and call this event again it does not show it. I am pretty sure it is not getting released because the pointer is still fine. Do I possibly have to override showWindow to order the window to the front? Or do I have to specify what window the controller uses in the nib?