我是否需要为 iPad 应用程序添加 @2x 和 @3x 图像?
Do I need to add @2x and @3x images for iPad application?
我对图片的尺寸有些疑惑
- 我需要为 iPad 添加
@2x
和 @3x
图片吗?
- Splash(Launch) 图像(@1x 图像)的宽度和高度是多少?
- 背景图片(@1x 图片)的宽度和高度是多少?
如果您的部署目标是 iOS 7 或更高版本,那么您需要两个启动图像 1x 和 2x,尺寸分别为 768 x 1024 像素和 1536 x 2048 像素,用于 iPad 的纵向,反之亦然!
您可以从属性检查器中轻松了解这一点 - 单击资产中 launchImage
中的任何 1x 或 2x 图像后的预期大小!
而且您不需要 iPad 的 3x 图片!
1.Do 我需要为 iPad 个应用程序添加 @2x 和 @3x 图片
From iOS 8.0 need only @2x and @3x images for both iPhone and iPad
applications.
for the @2x and @3x, The device will automatically pick
the right one, you no need to care about it, just make sure that there are @2x assets with twice the point size and @3x assets with thrice the point size in pixels.
2.What 将是 Splash(Launch) 图像(@1x 图像)的宽度和高度?
3.What 将是背景图像(@1x 图像)的宽度和高度?
You need @2x and @3x size for background images also.
我对图片的尺寸有些疑惑
- 我需要为 iPad 添加
@2x
和@3x
图片吗? - Splash(Launch) 图像(@1x 图像)的宽度和高度是多少?
- 背景图片(@1x 图片)的宽度和高度是多少?
如果您的部署目标是 iOS 7 或更高版本,那么您需要两个启动图像 1x 和 2x,尺寸分别为 768 x 1024 像素和 1536 x 2048 像素,用于 iPad 的纵向,反之亦然!
您可以从属性检查器中轻松了解这一点 - 单击资产中 launchImage
中的任何 1x 或 2x 图像后的预期大小!
而且您不需要 iPad 的 3x 图片!
1.Do 我需要为 iPad 个应用程序添加 @2x 和 @3x 图片
From iOS 8.0 need only @2x and @3x images for both iPhone and iPad applications.
for the @2x and @3x, The device will automatically pick the right one, you no need to care about it, just make sure that there are @2x assets with twice the point size and @3x assets with thrice the point size in pixels.
2.What 将是 Splash(Launch) 图像(@1x 图像)的宽度和高度?
3.What 将是背景图像(@1x 图像)的宽度和高度?
You need @2x and @3x size for background images also.