可能重复:
iPhone 5 - what naming convention the new images have to follow?
我刚下载了新的xcode,并为新的屏幕尺寸添加了新的启动画面。所以现在我有3个文件:
为Default.png, Default@2x.png, Default-568h@2x.png
直到现在,如果我想用它制作UIImage,我可以简单地这样做:
UIImage *img = [UIImage imageNamed: @"Default"];
和Default.png或Default@2x.png是根据应用程序执行的iphone类型自动选择的。但是现在有了新的屏幕尺寸,当然它仍适用于普通屏幕/视网膜屏幕,但不适用于4英寸屏幕。如何检测应用程序何时在iphone 5上运行然后使用* -568h图像?
答案 0 :(得分:0)
您只需添加Default-568h@2x.png
图片,大小为640 x 1136 px
。
在Xcode 4.5中,您还可以在目标摘要中找到4“启动图像的新字段。