Re: does nib call init?
Re: does nib call init?
- Subject: Re: does nib call init?
- From: Henri Lamiraux <email@hidden>
- Date: Thu, 20 Mar 2003 16:23:58 -0800
Check the IB FAQ (Help Menu -> FAQ) and search for initWithFrame:
On March 15, 2003, at 11:30 AM, daniel oberhoff wrote:
hi
i am trying to figure out how to initialize the NSOpenGLView subclass i
wrote, coz this:
- (id)initWithFrame:(NSRect)frameRect
pixelFormat:(NSOpenGLPixelFormat*)format {
self = [super initWithFrame:frameRect pixelFormat:format];
if (self) {
m_linpos = new vec3f;
m_rotpos = new rotation;
NSLog(@"frame init happens!");
}
return self;
}
which according to the docs is the standard initializer, never gets
called...
daniel
_______________________________________________
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.
_______________________________________________
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.