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 have opened a project from Github, which has blue folders in it's file structure.

As far as I understand this is a physical folder reference rather than just a means of grouping files together which might just lay around loosely on your hard drive.

So my question: When do you use those blue folders over the "normal" Group, what are its advantages and drawbacks and how do you create them in Xcode?

share|improve this question

2 Answers

up vote 2 down vote accepted

If you use blue folder references for you resources these folders will also be created inside your application bundle, while resource files in groups will simply be copied to your mainBundle's root directory.

share|improve this answer

When folder structure is managed outside of XCode (for example, a cross-platform project which has project files for different versions of XCode, Visual Studio and other IDEs, all using mostly the same directory tree), you normally want folder references. Otherwise one would have to recreate every project file every time folder structure changes.

share|improve this answer

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.