Created
March 26, 2014 06:23
-
-
Save LoganathanB/9777750 to your computer and use it in GitHub Desktop.
Cocoapods commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install: | |
$sudo gem install cocoapods | |
$pod setup | |
$pod list | |
$pod search AFN | |
In Repo: | |
$touch Podfile | |
$open -e Podfile | |
Podfile: | |
platform:ios | |
pod ‘AFNetworking’, ‘0.9.1’ | |
After saved Podfile: | |
$pod install | |
Note: | |
open xcworkspace | |
Adding Extra pods: | |
Add extra line in the Podfile- | |
pod ‘SSToolkit’ | |
pod ‘ConciseKit’ | |
After saved the Podfile | |
$pod install | |
TRY: | |
pod try BLCategory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment