现在正在使用 Xcode 5 创建应用程序。我的问题与 Launch Image 有关。我的问题是,当应用程序突然启动时会出现黑屏,然后启动画面(用于启动画面的附加视图控制器)顺利加载。我已经将 default.png(320*480) 设置为启动图像。在 Xcode 4.5 中它运行良好。我不明白为什么应用程序启动时出现黑屏而不是 default.png。我错过了什么?
...高级谢谢...
这是用于 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"];
}