Re: NIB Init method for window subclasses

2009-03-25 Thread Matt Neuburg
On Wed, 25 Mar 2009 09:43:55 +0700, Ryan Joseph said: >I have a window in a NIB file which I have assigned a class in the >"Class Identity" field and corresponding NSWindow subclass in code. >According to the reference (which is copied below) I think I should be >receiving a initWithCoder: message

Re: NIB Init method for window subclasses

2009-03-25 Thread Ryan Joseph
That explains it, Thank you Mike. On Mar 25, 2009, at 9:26 PM, Michael Ash wrote: On Tue, Mar 24, 2009 at 10:43 PM, Ryan Joseph wrote: I have a window in a NIB file which I have assigned a class in the "Class Identity" field and corresponding NSWindow subclass in code. According to the re

Re: NIB Init method for window subclasses

2009-03-25 Thread Michael Ash
On Tue, Mar 24, 2009 at 10:43 PM, Ryan Joseph wrote: > I have a window in a NIB file which I have assigned a class in the "Class > Identity" field and corresponding NSWindow subclass in code. According to > the reference (which is copied below) I think I should be receiving a > initWithCoder: mess

NIB Init method for window subclasses

2009-03-24 Thread Ryan Joseph
I have a window in a NIB file which I have assigned a class in the "Class Identity" field and corresponding NSWindow subclass in code. According to the reference (which is copied below) I think I should be receiving a initWithCoder: message (there are only 3 options) but I never get it. Cus