I can not get rid of the audio file in my iOS project. I used it in the supporting files folder, but deleted it (moved it to the trash, not just the link).
It is still matched by this line of code in my DetailViewController:
NSArray* soundFilesArray = [[NSBundle mainBundle] pathsForResourcesOfType:@"wav" inDirectory:nil];
I'm sure this is something simple, but I'm still pretty new to this, so I'm confused about how Xcode finds the file. Having looked everywhere in the Xcode project, I even looked through all the folders (in the Terminal) and did not find anything. I also did Clean (Product> Cleanliness).
source
share