UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Help needed: Xcode won't build my project because it can't find a file that I purposely deleted. How do I fix it?

Forums > Swift

While attempting to incorporate sound in my project for the first time, I dragged the desired file from my Downloads folder inside of Finder, directly into my project navigator without making sure it would copy as needed. This led to not being able to find the file at runtime, so I deleted it so I could try again.

To be completely clear, I deleted it by selecting it in the project navigator, then pressing command + delete. When prompted, I opted to move it to the trash.

Now, when I try and build (yes, I mean build, not run) my project, Xcode throws an error saying that file can’t be found, and it points back to my Downloads folder in Finder. This file is no longer in my project, nor is it represented in the project navigator. What can I do to fix this?

2      

@DarkhorseStudios - try and clean build the project Xcode -> Product -> Clean Build Folder

2      

I've tried that already with no luck. Any other ideas?

2      

Ok - go to project root in Project Navigator and then select "build phases." There's a "Compile Sources" section. if the file is listed there remove it.

2      

Okay, thanks. Can you be a little more clear though, please? I’m completely-blind and tracking this down is proving to be very difficult. First, are should this “Build Phases” option be in the project editor, once I’ve selected the project root in my project navigator? Second, in the project editor, I’m finding “Build Settings”, rather than phases. With that selected, there’s a table with a ton of options, none of which seem to be “Compile sources”. Does it sound like I’m at least looking in the right place?

2      

To access the build phases for a target,

  1. Open the project editor by selecting the project file on the left side of the project window.
  2. Select the target on the left side of the project editor.
  3. Click the Build Phases button at the top of the project editor.

An iOS app target for a newly created project has the following build phases:

  • Target Dependencies
  • Run Build Tool Plugins
  • Compile Sources
  • Link Binary with Libraries
  • Copy Bundle Resources

The two most interesting build phases for your situation are the Compile Sources and Copy Bundle Resources build phases.

I noticed you asked another question about not being able to play a sound file. The sound file should be part of the Copy Bundle Resources build phase. The file must be in the Copy Bundle Resources build phase to copy the file to the app bundle when Xcode builds the project. The sound file must be in the app bundle to load it and play it.

2      

@SwiftDevJournal thanks a lot , @DarkhorseStudios , do let us know if you got it resolved ..

2      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.