When I drag and drop the app icons to the project summery in Xcode, it copies the icons to the projects root directory. Is there a possibility to put the icons in another directory inside the project?
Asked
Active
Viewed 904 times
2 Answers
2
There are two ways to do it...
You can manually do an entry in projectName-info.plist in the key Icon files, Icon files is an array in this array one item you add i.e. Item 0 and the value should be your image file name.
Just name your icon image to "icon.png" and include it in your project(anywhere you want). Xcode will take care of it.

Suryakant Sharma
- 3,852
- 1
- 25
- 47
-
Way 2 works, but it seems that way 1 works only for iOS5 or earlier – Hans One Jun 26 '13 at 12:06