-4

现在正在使用 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"];
}
4

1 回答 1

1

启动时出现黑屏与您编写的任何代码无关 - 这始终意味着您没有以正确的方式定义默认图像。

尝试为您的启动图像使用资产目录,并设置所有必需的默认图像 - 如果仅适用于 iPhone,则为 320x480、640x960 和 640x1136。

您可以通过单击项目中的使用资产目录-> 常规页面来创建资产目录。

于 2013-10-28T11:21:14.710 回答