我显示模态子类窗口:
NSWindowController* controller = [[NSWindowController alloc] initWithWindowNibName: @"MyWindow"];
[NSApp runModalForWindow: [controller window]];
我initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
在我的窗口子类中覆盖以设置链接到 nib 文件的子视图。但是这些孩子此时没有初始化(为零)。
在哪里放置我的初始化代码?