I'm trying to add the AdColony.h frameWork after downloading it, but I can't find it in Xcode 5. I was able to do it in the last version, but can't find it in this one.
-
possible duplicate of [How to "add existing frameworks" in Xcode 4?](http://stackoverflow.com/questions/3352664/how-to-add-existing-frameworks-in-xcode-4) – jww Jul 03 '14 at 05:32
6 Answers
Click on your project in the Project Navigator on the left side. In General go to "Linked Frameworks and Libraries". Click on the + button
and click on "Add Other" and then add the framework you have downloaded.

- 5,291
- 7
- 45
- 60
-
12Thank you for your help. Just wanted to add that I had to switch from Project to Target in order to find the General tab. – user2874675 Oct 12 '13 at 19:10
Strange. I was just doing the same thing in XCode 5.0.2 and I had to click on the Project, select the *Tests Target, then select not the General tab but actually the Build Phases tab to see "Link Binary With Libraries" where I was able to add the framework.

- 378
- 3
- 5
Actually, I use Xcode 6.4, and I happen to be confronted with the same problem. I tried many ways suggested by others while none worked.(no button named General as others said) Here comes my solution.
- Select your project in the project navigator
- Click 'Build Phases' tab
- Open 'Link Binaries With Libraries' expander
- Click button '+' to add items
step 1-4
- Search and choose the frameworks you need, for example, I choose 'OpenGL.framework', and click the button 'Add'
- Finally, you can see the frameworks you choose in the window
Adding it in "Linked Frameworks and Libraries" as other answer discribe did not work for me in xcode 6.4.
However drag and drop it into Frameworks folder (Project Navigator) and creating a reference did worked.

- 22,828
- 17
- 107
- 180
Xcode v11 uses different settings
Frameworks, Libraries, and Embedded Content //for app
//or
Frameworks and Libraries //for Framework, extension...
here you should decide embed
or Do not embed
[About]
When you drag and drop a framework Xcode automatically adds necessary settings like Library Search Paths
or Framework Search Paths
[About]

- 29,217
- 8
- 193
- 205