does nib call init?
does nib call init?
- Subject: does nib call init?
- From: daniel oberhoff <email@hidden>
- Date: Sat, 15 Mar 2003 20:30:58 +0100
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.