Xcode does not show some files

My team and I use git for the project, and we are all new to this. In any case, by adding some class files to the project (target C project) and committing when another person clones the project, Xcode does not show the added files. I saw this post and I understand that we had to compile the .xcodeproj file all the time. Now, since the .xcodeproj file in the repository is the original file unchanged from everyone, how do I change my copy so that Xcode shows the files? They can be seen in the Finder.

+3
source share
3 answers

Drag still invisible files into the "project navigator", that is, the file tree that you see on the left (you have your files).

+3

. . , Xcode, , , , :

git add .

git commit -m "Your message" 

, - :)

0

Try it, it worked for me.

  • Open project in Xcode
  • Open a project in Finder
  • Double-click on the files, they will automatically appear in the project navigator inside Xcode.
-1
source

All Articles