I am looking for some information regarding repository clone.
For example, I want to clone a repository, an workspace having Pods installed and so on.
What should I do next ? Is pod install
enough or need something else ?
I am asking because I cloned a repository, having the latest commit, and I run pod install
and get a lot of errors. For example : Bolts/Bolts.h not found
and so on.
What did I do wrong ?
Use the following instructions to install AFViewShaker (via cocoapods)
1: Open terminal in your mac machine
2: user-MacBook-Pro:~ user$ sudo gem install cocoapods
user-MacBook-Pro:~ user$ pod setup (you must install cocoa pods in your machine)//only one time installation is enough.
3: Move to your project location in terminal
4: user-MacBook-Pro:sampleios7 user$ touch Podfile //create new podfile on your project path
5: user-MacBook-Pro:sampleios7 user$ open -a Xcode Podfile
Now You just created the pod file and opened it using Xcode! Ready to add some content to the empty pod file? Copy and paste the following lines into the TextEdit window:
6: user-MacBook-Pro:sampleios7 user$ pod install //wait sometime
7: From now on, be sure to always open the generated Xcode workspace (.xcworkspace) instead of the project file when building your project.Dont open (.xcodeProj)