Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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...).

share|improve this question
41  
"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
6  
I can't believe that: a. there's a (integrated, none the less) IDE+SDK out there in 2012 that still doesn't make clear how to add one of the bundled frameworks to a project. b. such a (normally) trivial subject got so much attention. c. the solution in so convoluted. – Shivan Dragon Aug 19 '12 at 8:14
3  
I kept right-clicking the Frameworks folder in my project figuring there should be a contextual menu item there for this; there isn't, and xcode, somewhat like the over-extended iTunes app, is often not consistent, logical or intuitive. Sadly, with my xCode version (4.4), using help menu search crashed the app just as the relevant help page came up. I'm one update behind the latest xCode release, but switching horses with an overdue deadline seems like a bad idea (even though I hope they fixed the "help" crashing in the update) – wkw Sep 8 '12 at 14:03

7 Answers

up vote 1413 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
share|improve this answer
10  
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
185  
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
54  
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

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

http://thinketg.com/xcode-4-tips-adding-frameworks-to-your-project/

share|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
Several years later, and it's XCode 4.6 and I still hate XCode 4's library/framework link configuration options. – Warren P Apr 11 at 0:02
I didn't even notice until NOW that all my frameworks were being added at the top of my project navigator!!! the blog was helpful. – user1066524 Apr 29 at 19:26

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

share|improve this answer
3  
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
14  
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

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.

share|improve this answer

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.

share|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

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
share|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 '12 at 14:42

in project 1)select the project navigator 2)click on Build Phages 3)and click on link binary withlibraries 4)and add +Button and add your Framewors

share|improve this answer

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.