I can't find the good old "Add existing frameworks" option. How do I do this?

We're talking about Xcode 4 DP2 (in the context of iPhone development, as far as it matters...).

link|improve this question

15  
"Add existing framework" is such a Visual Studio thing to do... damn that Microsoft for making development seem easy. – Jack Marchetti Jun 14 '11 at 17:56
feedback

6 Answers

up vote 1114 down vote accepted

As per Apple's documentation:

  1. In the project navigator, select your project
  2. Select your target
  3. Select the 'Build Phases' tab
  4. Open 'Link Binaries With Libraries' expander
  5. Click the '+' button
  6. Select your framework
  7. (optional) Drag and drop the added framework to the 'Frameworks' group
link|improve this answer
6  
For me at least, if you move the framework into any of the groups after this, it stops working. – Mk12 Aug 17 '10 at 23:08
4  
I just tried this with the latest build and didn't have any issues with moving the framework to the Frameworks group after it was added to the build. – Answerbot Feb 24 '11 at 19:28
155  
They have made this so dumb... I think I kinda miss the old XCode... So many chnages... even some shortcuts dont work :P – vivianaranha Mar 16 '11 at 3:38
8  
@vivianaranha, me too missing the old Xcode... xcode 4 crashes most of the time for me.. – Hanuman Mar 24 '11 at 11:50
33  
While Apple's consumer products get simpler, they're development tools get infinitely more complicated. Awesome. – rottendevice Mar 27 '11 at 18:20
show 19 more comments
feedback

I've found a blog where this point is really nice explained.

http://www.thinketg.com/Company/Blogs/11-03-20/Xcode_4_Tips_Adding_frameworks_to_your_project.aspx

link|improve this answer
2  
hey thanks a ton for sharing this. The other answers here were still a bit confusing but the link you posted is clear as broad daylight. – Jake Rocheleau Jul 31 '11 at 5:58
2  
Thanks for the link! I wrote the article and am glad to see you found it helpful. – David Brainer-Banker Nov 18 '11 at 16:47
feedback

I just added the existing framework folder manually into the project navigator. Worked for me.

link|improve this answer
2  
Sorry, I can't accept this answer for now because the concept of "adding an existing framework manually" is not clear – Ariel Malka Jul 29 '10 at 21:50
13  
Ok, I finally did it, as follows: 1) In the "project navigator", open the "frameworks" folder and select one the existing frameworks (e.g. UIKit.framework) 2) Right click and select "Show in Finder" from the menu 3) From the newly opened folder in the finder, drag the framework folder you are interested in (e.g. OpenGLES.framework) into the "frameworks" folder in XCode 4) Be sure not to "copy items into destination's group folder" 5) Choosing "Create groups for any added folders" seems to make it – Ariel Malka Jul 29 '10 at 22:03
@Ariel: Promote this to an alternative answer. +1 – Old McStopher Jul 7 '11 at 6:25
feedback

I would like to point out that if you can't find "Link Binaries With Libraries" in your build phases tab click the "Add build phase" button in the lower right corner.

link|improve this answer
feedback

Another easy way to do it so that it is referenced in the project folder you want, like "Frameworks", is to:

Select "Show the Project navigator"  
Right-click on the project folder you wish to add the framework to.  
Select 'Add Files to "YourProjectName"'  
Browse to the framework - generally under /Developer/SDKs/MacOSXversion.sdk/System/Library/Frameworks  
Select the one you want.  
Select "Add"  

It will appear in both the project navigator where you want it, as well as in the "Link Binary With Libraries" area of the "Build Phases" pane of your target.

link|improve this answer
Sorry, I just noticed a similar method in a comment above. This method is slightly different, but the result is the same. – GTAE86 Sep 29 '11 at 21:31
feedback

The frameworks directory is as follow in my computer: /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.0.sdk/System/Library/Frameworks

not the directory

/Developer/SDKs/MacOSXversion.sdk/System/Library/Frameworks
link|improve this answer
Right - it depends on what you have installed. Also, the XCode 4.3 release causes them to be installed to a completely new location - under the XCode distribution path. On my two machines, it is: /applications/xcode.app/contents/developer/platforms/macosx.platform/developer/S‌​DKs/MacOSX10.7.sdk/system/Library/Frameworks – GTAE86 May 22 at 14:42
feedback

protected by Community Jul 12 '11 at 16:16

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.