I've got an NSPanel in my app that I use as a data export feature.

How do I initialize the controls in the panel when it's initially displayed? (i.e. using NSDefaults). There doesn't seem to be an event that fires when the window/panel opens where I can restore the default settings (basically just restoring the value of an NSPopupButton).

Currently, I'm opening the panel using '[NSApp beginSheet...]' in my App Delegate class. Should I be using an NSWindowController subclass instead?

link|improve this question

1  
How is this NSPanel coming into existence? For example, is it stored in your main .nib file, or in a .nib file that your App Delegate is loading on demand, or are you creating it programmatically, or...? – NSGod May 23 '11 at 20:46
It's in the main nib file. – Stuart Tevendale May 24 '11 at 6:50
feedback

1 Answer

up vote 0 down vote accepted

Don't subclass the NSWindowController, simply subclass the NSPannel itself.

ExportPanel.h

#import <Cocoa/Cocoa.h>

@interface ExportPanel : NSPanel {

}

@end

ExportPanel.m

#import "ExportPanel.h"

@implementation ExportPanel

- (void)awakeFromNib
{
    // Initialize here
}

@end
link|improve this answer
Great, Thanks! That fixed it - obvious when you see it!! – Stuart Tevendale May 24 '11 at 18:09
feedback

Your Answer

 
or
required, but never shown

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