iOS启动图尺寸

PS:很基础的东西,记录一下,用起来方便些

按iOS版本分:
iOS5,6:320 x 480(1x) 、640 x 960(2x)、 640 × 1136(Retina 4)
iOS8,9:1242 × 2208(Retina HD 5.5″)、 750 × 1334(Retina HD 4.7″)
iOS7-9 :640 × 960(2x) 、640 × 1136(Retina 4)
iOS11+:1125 × 2436(3x)。苹果X的。

所以,4/4s需要2张。5/5s需要2张。6/7/8需要1张。对应的plus需要1张。iPhoneX需要1张。(3GS可以忽略了)共计7张图片。
对应Assets.xcassets文件夹中的Contents.json文件。其中filename需要和图片名一致。

{
  "images" : [
    {
      "extent" : "full-screen",
      "idiom" : "iphone",
      "subtype" : "2436h",
      "filename" : "[email protected]",
      "minimum-system-version" : "11.0",
      "orientation" : "portrait",
      "scale" : "3x"
    },
    {
      "extent" : "full-screen",
      "idiom" : "iphone",
      "subtype" : "736h",
      "filename" : "[email protected]",
      "minimum-system-version" : "8.0",
      "orientation" : "portrait",
      "scale" : "3x"
    },
    {
      "extent" : "full-screen",
      "idiom" : "iphone",
      "subtype" : "667h",
      "filename" : "[email protected]",
      "minimum-system-version" : "8.0",
      "orientation" : "portrait",
      "scale" : "2x"
    },
    {
      "extent" : "full-screen",
      "idiom" : "iphone",
      "subtype" : "retina4",
      "filename" : "[email protected]",
      "minimum-system-version" : "7.0",
      "orientation" : "portrait",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "filename" : "[email protected]",
      "extent" : "full-screen",
      "subtype" : "retina4",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "filename" : "[email protected]",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "filename" : "[email protected]",
      "extent" : "full-screen",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "filename" : "startpage_iPhone3GS_iOS56_320x480pt.png",
      "extent" : "full-screen",
      "scale" : "1x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}

你可能感兴趣的:(iOS启动图尺寸)