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.

I'm not able to refresh file list in Project Navigator. There is no refresh button, and I don't think restarting Xcode should be the solution.

How do you see files that you add externally? I'm on Mac.

share|improve this question
AFAIK, Xcode only runs on Mac. Can you describe your problem a little bit better? How are you adding files? They don't show up in your Xcode file list? – Michael Dautermann Sep 17 '12 at 7:02
I'm adding files externally (for example copy/paste a .js into the same folder). It appears in Xcode after close and reopen, no way to find it in the list otherwise – Alexandru Rada Sep 17 '12 at 7:21

2 Answers

Close and reopen the project, if necessary.


This may be required if you are using folder references (as one example). In that case, touching the directory might work to refresh what Xcode displays.

share|improve this answer
1  
This is the right answer. I find that the folder reference eventually catches up with reality, but it can take some time. If you want it done right away, there's nothing else but to close and open. I suspect this has something to do with the file system changing in memory but those changes not making it to disk right away. – Zee Nov 5 '12 at 17:54

How do you see files that you add externally?

Files cannot be added externally. Dumping a source file into the project directory does not (or should not, anyway) add it to the project. To add a file you must add it to the project from within Xcode.

If you have a bunch of files that you need to add then in the Add File dialog you can just select all the files you want at once and add them, without having to repeatedly open the Add File dialog. Just use control clicking to select multiple files.

share|improve this answer
Apple - this seems like a very silly design decision based on every other IDE have ever used! Is this really the reason? – kgx Oct 9 '12 at 17:43
This isn't necessarily true: you can add a folder reference to the project, and Xcode is supposed to show all the entries in that folder (they are all added to the project). This is useful if you have a src directory managed by version control; updates that add files are supposed to be automatically reflected in the project navigator. – Zee Nov 5 '12 at 17:52
@Zee That's interesting. I can't try it out now, but I wonder how such files are dealt with. For example, do the files automatically get added to any targets or are they basically ignored until you set such things? – bames53 Nov 5 '12 at 18:02

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.