CocoPods 使用心得
1.sudo gem install cocoapods 安装pods
2.在创建的Podfile中输入需要的类库。如下
- platform :ios
- pod 'Reachability', '~> 3.0.0'
- pod 'SBJson', '~> 4.0.0'
- platform :ios, '7.0'
- pod 'AFNetworking', '~> 2.0’
3.重要
如果pod install无响应,最简单方法跳过
升级CocoaPods的spec仓库
输入
pod install --verbose --no-repo-update
或者
pod update --verbose --no-repo-update