ronaldus_magnus
ronaldus_magnus

Reputation: 311

Where is the resources folder for my project in Xcode 4?

When I create a new project in Xcode 4 it does not create the resources folder like Xcode 3 used to do. Is there a setting in Xcode 4 to make this work?

Upvotes: 27

Views: 36775

Answers (3)

Johannes Fahrenkrug
Johannes Fahrenkrug

Reputation: 44700

Check out this question if you don't just want the group but also the physical folder on your filesystem: How do I get the resources folder back in Xcode 4?

Upvotes: 0

Brad Larson
Brad Larson

Reputation: 170309

As badcat indicates in his comments, the Resources folder was merely a group within the project template. To create your own Resources group, either right-click on the project explorer view and choose New Group, or go to the menu option File | New | New Group.

If you want to make sure that items which should be resources are copied into the correct location in your application bundle, you can click on the name of your project in the project explorer on the left of the screen and go to the Build Phases tab. You can expand the Copy Bundle Resources build phase (or whatever it's called in your project) and see the files that will be copied over. If something is missing, you can drag it into that list from the project explorer.

Upvotes: 31

BastiBen
BastiBen

Reputation: 19860

Not sure what you mean by "Resources" folder, but maybe this answer helps you with that:

Upvotes: 0

Related Questions