IOS推出图像尺寸

时间:2013-05-30 09:27:33

标签: ios xcode ipad

ios App Programming Guide表示iPad应用的以下启动图片尺寸:

1024x748px and 2048x1496px

然而在XCode中,我在工具提示中为ipad肖像启动图像提供了以下尺寸:

1024x768px and 2048x1536px

我应该遵循哪一个?

注意

ios human interface guidelines州:

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

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

9 个答案:

答案 0 :(得分:62)

启动图像尺寸确实令人困惑,需要大量不必要的交叉引用。在Xcode中有一个页面,其中发射图像是拖放的,但莫名其妙地缺乏像素尺寸!!

通过反复试验,欧文·鲁宾提出了以下方面的问题,并制作了一张图片供您参考。如果我们发现任何错误,请通知我。

答案 1 :(得分:31)

iOS推出图像尺寸 - (新添加的iPhone X)iPhone和iPad。

iPhone X Launch Image Sizes (+ other sizes)

enter image description here

答案 2 :(得分:23)

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

答案 3 :(得分:23)

iOS Launch Image Sizes - 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)

答案 4 :(得分:10)

来自user2339310的{p> link iPhone Development 101是关于iOS发布图片尺寸的绝佳来源。他们用规格制作了一个很好的模型:

iPhone Development 101's Launch Sizes


然而,Apple已经非常清楚发布图像应该是多少尺寸:

Apple's launch sizes

Arrow Click Me for high resolution Arrow

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

答案 5 :(得分:7)

我认为两者都有效,这取决于你是否想要在启动时显示状态栏。

答案 6 :(得分:5)

答案 7 :(得分:5)

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

1X = 320×480

2X = 640×960

3X = 640×1136

5.5 = 1242×2208

4.7 = 750×1334

4 Ratina = 640×1136

以下是Apple Developer Website

中最新设备的尺寸

Here is the Image

答案 8 :(得分:4)

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