Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App icon size for new iOS

Tags:

xcode

ios

I realize that iOS 7 is not out yet and should not be discussed but I could not find the answer to this question anywhere and iOS 7 comes out in a few days.

I submitted my app for iOS 7 and I got a warning saying I am missing the icon size 120 X 120 which apparently is the new standard size for icons in iOS 7. What I don't understand is what I should name this icon because my app supports both iOS 6 (Default app icon size is 114 X 114) and iOS 7.

Does anyone know how I should name this 120 X 120 icon for iOS 7 and my old iOS 6 icon that was 114 X 114?

Thanks!

like image 638
Teddy13 Avatar asked Sep 16 '13 01:09

Teddy13


People also ask

What size should app icons be?

Final size: 512px x 512px. Format: 32-bit PNG. Color space: sRGB.


2 Answers

It doesn't matter what you name the file as long as you hook it up correctly in Targets General Tab. You just click the Folder icon and select the file you want to use. The naming convention only really mattered because that was what was in the info.plist by default for a new project.

enter image description here

And the Targets General Tab realy just sets values in the app's info.plist

enter image description here

Note: I have a build setting ICON_SUFFIX = "Beta" so my beta release via TestFlight has a different bundle ID and Icon so it sits along side my app store version and doesn't over write it.

like image 108
GayleDDS Avatar answered Oct 20 '22 17:10

GayleDDS


You can also use one asset catalog to organise your icon images, it's quite easy.If there is one image asset catalog, you use that one, otherwise you can new one. then select Use Asset Catalog in the App Icons part of General tab, you need to prepare the following image size and just drag the images to the corresponding location.

The icon sizes for iPhone and iPad for iOS 5~7 screenshot is as below: http://i.stack.imgur.com/8PqMH.png

or download it here

like image 5
chancyWu Avatar answered Oct 20 '22 17:10

chancyWu