I am relatively new to Xcode and one thing that has bothered me is that when I add a resource it gets added to the top level directory of my project directory. So for exampl
It's actually really easy to get from where you are to where you want to be. Create the images/
folder and put all the images in it. Now in the project window in Xcode, the image files have gone red because they aren't in place any more. Get Info on them, and "Choose..." the new location.
Note that just because you've moved the file in the source file system (known as $SRCROOT
), there's no change to the way the file is used in the product. If it got copied into Contents/Resources/
before you moved the file, that's where it gets copied to afterwards. No subfolder will be added at the destination.