iOS_cocoapods

下载安装

//下载比较慢
sudo gem install cocoapods
pod setup

//使用国内源下载
gem sources --remove https://rubygems.org/
gem sources -a http://ruby.taobao.org/
gem sources -l
pod setup

查找开源库

pod search json

-> AFJSONPRequestOperation (1.0.0)
   AFNetworking Extension for the JSONP format.
   pod 'AFJSONPRequestOperation', '~> 1.0.0'
   - Homepage: https://github.com/acerbetti/AFJSONPRequestOperation
   - Source:   https://github.com/acerbetti/AFJSONPRequestOperation.git
   - Versions: 1.0.0 [master repo]

使用

  • 创建Podfile在项目的根目录

  • 依赖的库名字

platform :ios
pod 'AFNetworking', '~> 2.5.4'
pod 'SDWebImage', '~> 3.7.3'
  • 下载
pod install
  • Podfile更改后更新
pod update

解决update,install 慢的命令,原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库

pod install --verbose --no-repo-update
pod update --verbose --no-repo-update

eg

 platform :ios , '7.0'
 pod 'AFNetworking', '~> 2.5.4'
 pod 'SDWebImage', '~> 3.7.3'
 pod 'XLPagerTabStrip', '~> 1.1.1'

你可能感兴趣的:(iOS_cocoapods)