Xcode how to fix deleted files from a project. Erro Missing File

I delete some files from the project, and now the project builds I see the following image

enter image description here

And I use SVN as version control.

+4
source share
1 answer

Make sure you do the following:

  • on the rules tab for building project parameters, in the "Compilation Files" section, you deleted links to deleted files.
  • still in the string rules, in the * Resource bundle "section, you deleted any link to the files of deleted resources (for example, images)
  • you have cleared the project (CMD + Shift + K)
0
source

Source: https://habr.com/ru/post/1443378/


All Articles