現在、アプリケーションの作成に Xcode 5 を使用しています。私の問題は Launch Image に関連しています。私の問題は、アプリが突然起動すると黒い画面が表示され、スプラッシュ画面(スプラッシュ画面用の追加のビューコントローラー)がスムーズに読み込まれることです。私はすでに default.png(320*480) を起動イメージとして設定しています。
...高度な感謝...
これは、spashviewController に使用しているコードです。
Appdelegate *appdelegate=(Appdelegate*)[[UIApplication sharedApplication] delegate];
int ht=[UIScreen mainScreen].bounds.size.height;
////NSLog(@"ht is %d",ht);
[self.view setFrame:CGRectMake(0, 71, 320,ht-64)];
if(appdelegate.window.frame.size.height==568)
{
// code for 4-inch screen
////NSLog(@"iPhone 5 Screen");
////NSLog(@"main view nd main image view is resizable so noo need to set frame,just change the the image of main image view");
backgroundimage.image=[UIImage imageNamed:@"Default-568h@2x.png"];
activityIndicator.frame=CGRectMake(141,476,20,10);
} else {
backgroundimage.image=[UIImage imageNamed:@"default.png"];
}