Reputation: 1348
I am a litte confused. There are a lot of different size of icons and I can't find how can I name them. Can I give them random names?
Upvotes: 0
Views: 382
Reputation: 5339
As per the iOS Developer Library article that Jordan linked, almost all don't require a specific filename:
Prior to iOS 3.2, icon images were required to follow a strict naming convention. ... Except for iTunesArtwork, icon images included in your app can have arbitrary names.
It also interestingly notes the following:
iTunesArtwork icon images should be in png format, but name them without the .png extension.
Upvotes: 0
Reputation: 70733
Yes, you can give iOS app icons arbitrary names (ending in .png). They don't need to be named Icon-xyz.png. But you might want to use a clear obvious descriptive naming scheme anyway, so that you can keep them straight, non-duplicated, and easily check for missing sizes in the project file directory and app plist.
Upvotes: 0
Reputation: 8247
Here the guidelines iOS for all icons and the new guidelines for iOS 7 here.
and Here a website to create all size of your icons for iOS 6, 7 and Android with the 1024*1024.
Add the different keys of your icon in your info.plist
and add the icons in your resources :
Upvotes: 1