Reputation: 1480
I have add some framework like Google,Facebook in my iOS project and when i compress the project code file and take the code any other system then show that framework is not available so can you tell me how can i add framework in iOS application?
Upvotes: 0
Views: 99
Reputation: 241
If you want an older version, the best way is to use cocapods and then specify in your Podfile the following line: pod 'Facebook-iOS-SDK', '~> 3.18.0' In that example you would receive the sdk version 3.18
Upvotes: 1
Reputation: 640
1) Click on Project
2) Go to Bulid Phases , Link Binary With Libraries , click on ADD button
3)Click on Add Other Button , Go your library path and Add to project
Upvotes: 3