Ravi Ojha
Ravi Ojha

Reputation: 1480

Add framework in iOS application from outside of xcode

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

Answers (2)

Shachar
Shachar

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

srinivas n
srinivas n

Reputation: 640

1) Click on Projectenter image description here

2) Go to Bulid Phases , Link Binary With Libraries , click on ADD button enter image description here

3)Click on Add Other Button , Go your library path and Add to project enter image description here

Upvotes: 3

Related Questions