user1526474
user1526474

Reputation: 945

Create Blue Folders in Xcode

I am working on an existing project where there are some blue folders that store some image references. If I create normal yellow folders, images are not read. So how do I create new blue folders?

enter image description here

Upvotes: 19

Views: 5860

Answers (2)

Learning Programming
Learning Programming

Reputation: 476

To make blue folder you should do following steps,

  1. Prepare folder structure with files in it.
  2. Drag that folder into xcode i.e. project navigation pan.
  3. Select " Create folder references for any added folders " option.
  4. Finally click to add.

You will get that folder with blue color.

Thank You..

Upvotes: 0

DrummerB
DrummerB

Reputation: 40211

Drag the folder to your project and make sure you select Create folder references for any added folders

enter image description here

Upvotes: 30

Related Questions