32

ios App Programming Guide规定了 iPad 应用程序的以下启动图像大小:

1024x748px and 2048x1496px.

然而在 XCode 中,工具提示中的 ipad 纵向启动图像的尺寸如下:

1024x768px and 2048x1536px.

我应该遵循哪个?

注意

ios 人机界面指南指出:

For iPad launch images, do not include the status bar region.

我对我应该遵循哪些维度感到困惑。

4

9 回答 9

66

The Launch image dimensions are indeed confusing, and require a lot of needless cross reference. In Xcode there is a page where the launch images are drag and drop yet inexplicably lack pix dimensions!!

Through trial and error, Owen Rubin came up with the following dimensions and I made an image for your reference. Please let me know if we've made any errors.

于 2015-02-08T00:48:32.017 回答
33

iOS 启动图像大小 - (使用新添加的 iPhone X)iPhone 和 iPad。

iPhone X 启动图像尺寸(+ 其他尺寸)

在此处输入图像描述

于 2017-11-08T07:51:36.440 回答
28

iOS 启动图像大小 - Xcode

iOS 启动图像大小 - Xcode iPhone/iPad

1x                = 320 x 480    
2x                = 640 x 960
Retina 4          = 640 x 1136
Retina HD 5.5     = 1242 x 2208
Retina HD 4.7     = 750 x 1334
Retina HD 5.5     = 2208 x 1242   (landscape)
iPad 1x           = 768 x 1024
iPad 2x           = 1536 x 2048
iPad 1x           = 1024 x 768    (landscape)
iPad 2x           = 2048 x 1536   (landscape)
于 2017-04-21T04:21:13.710 回答
23

在 XCode 中选择图像的插槽,并在右侧面板上打开“属性检查器”选项卡,它会告诉您预期大小。

于 2015-11-18T23:18:21.583 回答
11

来自iPhone Development 101的user2339310链接是有关 iOS 启动图像大小的重要来源。他们用规格做了一个很好的模型:

iPhone Development 101 的发布尺寸


但是,Apple 已经非常清楚启动图像的大小应该是多少:

苹果的发布尺寸

箭 点我看高清 箭

取自 Apple 的原始页面:http: //developer.apple.com/library/ios/documentation/userexperience/conceptual/mobilehig/IconsImages/IconsImages.html

于 2013-08-13T12:20:39.477 回答
7

我认为两者都有效,这取决于您是否希望在启动期间显示状态栏。

于 2013-05-30T09:29:19.470 回答
7

如果您使用的是Xcode 8.x,则属性检查器中不会显示预期大小。您可以查看以下尺寸以供纵向模式参考:

1X = 320 × 480

2X = 640 × 960

3X = 640 × 1136

5.5 = 1242 × 2208

4.7 = 750 × 1334

4 拉蒂娜 = 640 × 1136

以下是Apple 开发者网站上最新设备的尺寸

这是图像

于 2017-01-05T07:27:10.353 回答
4

如果您正在显示状态栏,则使用第一个(高度减少 20 像素),否则使用第二个(全尺寸)。

于 2013-05-30T09:29:51.420 回答