Below are the steps please follow them.
Open Terminal
Change directory to your XCode project root directory (where your ProjectName.xcodeproj file is placed).
$ pod setup : (Setting up CocoaPods master repo)
If successful, it shows : Setup completed (read-only access). So, you setup everything. Now Lets do something which is more visibleYes ! Lets install libraries in your Xcode project.
Steps to add-remove-update libraries in pod:
Open Terminal
Change directory to your XCode project root directory. If your terminal is already running then no need to do this, as you are already at same path.
$ touch podfile
$ open -e podfile (This should open a blank text file)
Add your library names in that text file. You can add new names (lib name), remove any name or change the version e.g :
These are the SDKS
pod AFNetworking, 0.9.1
pod Facebook-iOS-SDK
pod EGOTableViewPullRefresh
pod JSONKit
pod MBProgressHUD
pod Reachability
NOTE: Use ( control + ) button to add single quote at both end of library name. It should be shown as straight vertical line. Without control button it will add this as a curly single quote which will give error while installation of file.
Save and close this text file. Now libraries are setup and you have to install/update it.
Go to your terminal again and run this command: $ pod install (to install/update these libraries in pod).
You should see output similar to the following:
Updating spec repo `master
Installing AFNetworking (0.9.1)..
Generating support files
After successful downloading/installation of any single library, It will generate ProjectName.xcworkspace in your project root directory. From now use this workspace to open your project. When you open your project work space you will see Pod is also added as another Xcode project with your Xcode project. If you open Pod it will show all libraries.
For your next project your dont need to install the cocoa pod again in your mac machine just open the terminal and setup the Pod in root directory of your Xcode project and always remember these 3 commands :
1. $ touch podfile
2. $ open -e podfile
3. $ pod install
0 Comment(s)