iPhoneアプリを登録するときに必須なんだけど忘れがちな事をメモ。
(すべてではありません)
- アプリ名
- Copyright(著作権表示)
- アイコン画像(iTunes登録用)JPEG/PNG
1024×1024(以前は512 x 512) - スクリーンショット JPEG/PNG
iPhone必須(Retina画質)
3.5″縦 640 x 920 / 640 x 960
3.5″横 960 x 600 / 960 x 640
4″縦 640 x 1096 / 640 x 1136
4″横 1136 x 600 / 1136 x 640
オプション
4.7″縦 750 x 1334
4.7″横 1334 x 750
5.5″縦 1242 x 2208
5.5″横 2208 x 1242
iPad必須(Retinaじゃなくても可)
縦 768 x 1004 / 768 x 1024 / 1536 x 2008 / 1536 x 2048
横 1024 x 748 / 1024 x 768 / 2048 x 1496 / 2048 x 1536
これ以外にアプリを作るときに必要なのは小さなアイコンと起動イメージ。
- アプリアイコン PNG
iOS7,8 120 x 120(必須) 180 x 180
iOS6.1以前 114 x 114(Retina用)57 x 57 - LaunchImage
iOS7,8 640 x 960 & 640 x 1136(必須)
(320 x 460も入れられる)
- iOS4の頃のアイコン指定方法(infoへの直接追加)
- Icon file(CFBundleIconFile)に57×57のPNGファイル名を入れる。
<key>CFBundleIconFile</key>
<string>logo57.png</string> - iOS5,6,7の頃の指定方法
- 57×57と114×114、120×120を入れる(iOS4〜7に対応させる場合)
<key>CFBundleIconFile</key>
<string>logo57.png</string>
<key>CFBundleIconFiles</key>
<array>
<string>logo57.png</string>
<string>logo114.png</string>
<string>icon60.png</string>
<string>icon60@2x.png</string>
</array>
<key>CFBundleIcons</key>
<dict>
<key>CFBundlePrimaryIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>logo57.png</string>
<string>logo114.png</string>
<string>logo60@2x.png</string>
</array>
<key>UIPrerenderedIcon</key>
<false/>
</dict>
</dict>
CFBundleIconFilesに入っているicon60.png、icon60@2x.pngの指定はいらないのかも。