NSWindowController
NSWindowController
- Subject: NSWindowController
- From: Chris Idou <email@hidden>
- Date: Mon, 15 Sep 2008 18:55:24 -0700 (PDT)
Sorry if this is a bit basic, but I can't figure out why my preference panel only comes up the first time. Second and subsequent times, nothing happens.
I have this code linked to Preferences menu item:
- (IBAction)preferences:(id)sender {
if (nil == preferencesController) {
preferencesController = [[NSWindowController alloc]
initWithWindowNibName:@"Preferences" owner:self];
}
[preferencesController showWindow:self];
}
In the NIB, the file's owner is a NSWindowController, and I have linked its window outlet to the Window.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden