Raymond Camden
Raymond Camden

Reputation: 10857

Bundles and frameworks "lost" after Xcode restart

I'm working with a framework in my XCode project where I first add a bundle via "Copy Bundle Resources" and then I link in the framework via "Link Binary with Libraries." Both files exist outside my project folder. I do NOT use the "Copy items into destination group's folder" option.

I can work on my app and it runs great. I kill Xxode, restart it, and even though I see the bundle and framework listed, the project won't compile anymore. I have to remove both and re-add them to get it to work.

Upvotes: 0

Views: 307

Answers (1)

Anthony
Anthony

Reputation: 2877

You shouldn't need the framework in your copy bundle resources phase. You should only need it in link binary w/libraries and in your build settings framework search path

Upvotes: 1

Related Questions