このウィンドウ(白い背景)にアプリケーションの開始点があります。
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
mainScreen = [[MainScreenController alloc] initWithNibName:@"MainScreenController" bundle:[NSBundle mainBundle]];
// add it to the main window
[window addSubview:[mainScreen view]];
// show view
[window makeKeyAndVisible];
NSLog(@"started");
return YES;
}
また、MainScreenControllerは、Interface Builderによって作成された(blackBackground)を備えたUIViewControllerです。
アプリケーションは完全に実行されますが、最初は、黒いビューがステータスiphoneパネルの高さのように上に移動します(下部に白い長方形が残ります)。
iPhoneを2回回転させると、ビューは適切な場所に完全に配置され、すべての画面が黒い背景で塗りつぶされます。
何か案が?
ありがとう!