他のビューをロードする前にログイン モーダル ウィンドウを最初に表示するコードを探していました。
ログインペン先を作成し、applicationDidFinishLaunching appdelegate で次のコードを使用します。
[window addSubview:splitViewController.view];
IntroView *introViewController=[[[IntroView alloc] initWithNibName:@"IntroView" bundle:nil]autorelease];
[introViewController setModalPresentationStyle:UIModalPresentationFullScreen] ;
[self.splitViewController presentModalViewController:introViewController animated:NO];
[window makeKeyAndVisible];
...
これを実行すると、モーダル ウィンドウは表示されませんが、NSLog すると読み込まれます。なぜそれが表示されないのですか?