Mark
Mark

Reputation: 18204

xCode 4 Adding Folders

In xCode 3 I could drag a folder into the project and say add references and it all works. When doing the same in xCode 4 it makes the folder blue and when trying to build it hangs at Attaching to .

I have tried everything but I couldn't resolve it. I have read : Xcode building and resources folders

But that didnt help me. Does anyone have an idea?

Upvotes: 4

Views: 9503

Answers (2)

Yogev Shelly
Yogev Shelly

Reputation: 1373

It is important not to call this directory ‘Resources’, as it seems to confuse Xcode into giving a lot of ‘Application is already installed’ errors.

Quoted from here: http://majicjungle.com/blog/123/ And worked for me on the same issue.

Upvotes: 6

Nick Weaver
Nick Weaver

Reputation: 47241

Adding a folder by dragging still works in XCode4. Look at the following dialog, the first alternative for Folders will turn the folder yellow, creating a smart group.

The second alternative will turn it blue referencing the folder directly.

enter image description here

Upvotes: 14

Related Questions