Re: makeWindowControllers question
Re: makeWindowControllers question
- Subject: Re: makeWindowControllers question
- From: Bill Greene <email@hidden>
- Date: Tue, 2 Dec 2003 21:21:26 -0500
On Dec 2, 2003, at 8:21 PM, mmalcolm crawford wrote:
On Dec 2, 2003, at 5:13 PM, Bill Greene wrote:
[super initWithWindowNibName:@"MyNibName"];
More accurately, I'm creating my new controller in
-makeWindowControllers thus:
MyWindowController *controller = [[MyWindowController alloc]
initWithDocument:self];
and -[MyWindowController initWithDocument:] is the one that does
Ah, how about just
id newController =
[[MyWindowController alloc] initWithWindowNibName:@"MyNib"];
[self addWindowController:newController];
That did the trick. Thank you!
mmalc
-- Bill
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.