Xcode iPhone app files are missing

I am trying to figure out what exactly this determines what files are included in the .app package when the application is compiled in Xcode. I noticed that most of the image files go there automatically, while others like yaml files or psd don't work and I can't find anywhere to install this. So how do you do it?

+2


source to share


1 answer


Look at the build phases for your application target. You will find that the recognized image files were added during the resource copy step. To copy files of a type that Xcode does not recognize, you can add the Copy Files build phase.



If all else fails, read the documentation .

0


source







All Articles