モーダル サブクラス ウィンドウを表示します。
NSWindowController* controller = [[NSWindowController alloc] initWithWindowNibName: @"MyWindow"];
[NSApp runModalForWindow: [controller window]];
initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag
そして、ウィンドウ サブクラスをオーバーライドして、nib ファイルにリンクされている子ビューをセットアップします。しかし、これらの子は現時点では初期化されていません (nil です)。
初期化コードを配置する場所は?