我正在使用iOS SDK开发应用程序.我需要知道我需要什么样的Default
闪屏大小.
我将离开以下帖子以供参考.
请阅读Apple的文档人机界面指南 - 启动屏幕,了解有关启动屏幕和建议的详细信息.
谢谢
Drekka
2012年7月 - 由于这个回复相当陈旧,但剧照似乎很受欢迎.我写了一篇基于Apple的doco的博客文章并将其放在我的博客上.我希望你们发现它有用.
是.在iPhone/iPad开发中Default.png
,设备会自动显示文件,因此您无需对其进行编程即可.我没有它,但你需要具有特定名称的iPad的不同PNG.我用Google搜索iPad default png
并从phunkwerks网站获取此信息:
为了处理各种方向选项,我们为iPad发布图像创建了一个新的命名约定.iPad的屏幕尺寸为768×1024,注意高度后面的尺寸考虑了20像素的状态栏.
Default-Portrait.png
* - 768w x 1024h
Default-PortraitUpsideDown.png
- 768w x 1024h
Default-Landscape.png
** - 1024w x 748h
Default-LandscapeLeft.png
- 1024w x 748h
Default-LandscapeRight.png
- 1024w x 748h
iPad-Retina–Portrait.png
- 1536w x 2048h
iPad-Retina–Landscape.png
- 2048w x 1496h
Default.png
- 不建议
* - 如果您尚未指定Default-PortraitUpsideDown.png
文件,则此文件优先.
** - 如果您尚未指定文件Default-LandscapeLeft.png
或Default-LandscapeRight.png
图像文件,则此文件优先.
这个链接到"Apple的开发人员库"也很有用.
截至2013年7月(iOS 6),这是我们一直使用的:
IPHONE SPLASH Default.png - 320 x 480 Default@2x.png - 640 x 960 Default-568h@2x.png - 640 x 1096 (with status bar) Default-568h@2x.png - 640 x 1136 (without status bar) IPAD SPLASH iPadImage-Appname-Portrait.png * 768w x 1004h (with status bar) iPadImage-Appname-Portrait@2x.png * 1536w x 2008h (with status bar) iPadImage-Appname-Landscape.png ** 1024w x 748h (with status bar) iPadImage-Appname-Landscape@2x.png ** 2048w x 1496h (with status bar) iPadImage-Appname-Portrait.png * 768w x 1024h (without status bar) iPadImage-Appname-Portrait@2x.png * 1536w x 2048h (without status bar) iPadImage-Appname-Landscape.png ** 1024w x 768h (without status bar) iPadImage-Appname-Landscape@2x.png ** 2048w x 1536h (without status bar) ICON Appname-29.png Appname-29@2x.png Appname-50.png Appname-50@2x.png Appname-57.png Appname-57@2x.png Appname-72.png Appname-72@2x.png iTunesArtwork (512px x 512px) iTunesArtwork@2x (1024px x 1024px)
对于iOS7,创建以下尺寸的启动图像:
适用于iPhone 5和iPod touch(第5代):
640 x 1136像素
对于其他iPhone和iPod touch设备:
640 x 960像素
320 x 480像素(标准分辨率)
对于iPad肖像:
1536 x 2048像素
768 x 1024像素(标准分辨率)
对于iPad风景:
2048 x 1536像素
1024 x 768像素(标准分辨率)
请参阅iOS 7设计资源> iOS人机界面指南>启动图像
更新1
对于iPhone 6:
750 x 1334(@ 2x)的肖像
1334 x 750(@ 2x)景观
对于iPhone 6 Plus:
1242 x 2208(@ 3x)为肖像
2208 x 1242(@ 3x)景观
更新2
对于iPhone X:
1125 x 2436(@ 3x)为肖像
2436 x 1125(@ 3x)景观
您可以将它们设置为1024 x 768.您还可以在plist文件中选中"状态栏最初是隐藏的".