Skip to content

Instantly share code, notes, and snippets.

@LoganathanB
Created March 26, 2014 06:23
Show Gist options
  • Save LoganathanB/9777750 to your computer and use it in GitHub Desktop.
Save LoganathanB/9777750 to your computer and use it in GitHub Desktop.
Cocoapods commands
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