Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In the project navigator in Xcode, I am not sure what the ? is trying to tell me next to the file name.


Screen Shot

I am sure it is not a coincidence that this is the same file that I dragged from my root directory for the project to the Classes folder (because the .mm file was there and I wanted them to be together). The project still compiles just fine, however my code sense broke recently and I am wondering whether this may be part of the issue.

Thanks!

share|improve this question

1 Answer

up vote 10 down vote accepted

I think it's the file untracked by source control.

share|improve this answer
Is there a remedy? – Kevin_TA Dec 15 '11 at 19:09
If you use source control, it would probably make sense to add it. – Michael Krelin - hacker Dec 15 '11 at 19:16
6  
Thanks. In case someone else reads this, just right click on the file and goto Source Control->Add. This will turn ? to A. So, basically: ? means not part of source control. A means added to source control, but not modified. M means it is added to source control and is modified. – Farhan Hafeez Feb 13 at 6:44
1  
@FarhanHafeez, correct ;-) – Michael Krelin - hacker Feb 13 at 9:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.