How does one remove files from a Xcode Project? I'm having troubles by pressing "Delete" and then selecting "Remove References".
I ask because I moved a bunch of PNGs from <root> to <root>/icons/ (after creating the icons subdirectory). I removed the PNGs from the project, and then re-added the PNGs under the new location. I also added an "icons" folder under "Resources" in Xcode. It results in CopyPNG failures due to the old path.
Some testing revealed that Xcode does not remove the references in the PBXPROJ file. Which begs the question, what exactly am I removing from the project if a reference remains? It also begs, how do I truly expunge the data from the project so I can cleanly add it again?
Jeff