Xcodeテンプレートを使用して新しい空白の標準アプリケーションを作成しました。MainMenu.xibのウィンドウを削除し、xibを使用して新しいカスタマイズされたNSWindowControllerサブクラスを作成しました。
それらは「WYSunFlowerWindowController.h」および「WYSunFlowerWindowController.m」と名付けられました。
そして、以下のようなinit関数を追加します。
- (id)init
{
NSLog(@"init()");
return [super initWithWindowNibName:@"WYSunFlowerWindowController" owner:self];
}
そして、私のWYAppDelegate.mファイルは次のようになります。
static WYSunFlowerMainWindowController* windowController = nil;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
// Insert code here to initialize your application
if (windowController == nil) {
windowController = [[WYSunFlowerMainWindowController alloc] init];
}
[[windowController window] makeKeyAndOrderFront:windowController];
}
また、アプリを起動した後、ウィンドウにウィンドウが表示されないという問題があります。誰でも理由を教えてくれますか?私のコードに何か問題がありますか?
私はObjective-Cとココアの初心者です。ですから、自分では理解できないというばかげた間違いを犯しているのではないかと思います。
アップデート:
これが私のプロジェクトソースです。嘆願は一見して、私の間違いが何であるかを理解するのを助けてくれます。</ p>