cocoapods安装与使用

Pod安装

1、升级Ruby环境

sudo gem update --system

2、更换Ruby镜像

首先移除现有的Ruby镜像

gem sources --remove https://rubygems.org/

然后添加国内最新镜像源

gem sources -a https://gems.ruby-china.org/

执行完毕之后输入gem sources -l来查看当前镜像

gem sources -l

如果结果是

*** CURRENT SOURCES ***

https://gems.ruby-china.org/

说明添加成功,否则继续执行$ gem source -a https://gems.ruby-china.org/来添加

3、安装CocoaPods

sudo gem install -n /usr/local/bin cocoapods

pod setup

当出现Setup completed的时候说明已经完成了。

Pod 使用

  1. cd 文件路径
  2. touch Podfile
  3. 修改 Podfile 文件,添加
    platform :ios, '8.0'

target '你的项目名称' do

pod 'AFNetworking', '~> 3.0'

end

4.pod install

添加新库

1、Podfile 添加 pod ‘三方库名’
2、cd + 项目路径

3、pod install

删除库

Podfile 直接删除,然后pod update

更新pod库

pod repo update --verbose

检测三方库的版本
pod install

更新三方库到某一个版本
1.在Podfile 添加 pod 'IQKeyboardManager', '~> 5.0.0'

  1. pod update

你可能感兴趣的:(cocoapods安装与使用)