美文网首页
Cocospod 基本操作

Cocospod 基本操作

作者: SanW | 来源:发表于2017-10-22 10:05 被阅读66次
    1> 创建podfile文件

    pod init

    2> 安装第三方库
    // 在podfile中添加第三方库如
    # Uncomment this line to define a global platform for your project
    platform :ios, '9.0'
    use_frameworks!
    
    target 'LiteraryHeaven' do
    pod 'SVProgressHUD'
     pod 'Heimdall', '~> 1.0.0'
    # pod 'ReactiveCocoa','~> 4.0.0'
    end
    
    
    // 安装
    pod install
    
    3> cocospod 更新

    1> 先切换gem源

    gem sources --remove https://rubygems.org/`
    gem source -a https://gems.ruby-china.org  
    // 查看是否切换成功
    gem source -l
    
    打印出*** CURRENT SOURCES ***
    
               https://gems.ruby-china.org
    
    就说明切换成功
    

    2>升级
    sudo gem install -n /usr/local/bin cocoapods --pre
    3> 查看版本
    pod --version
    4> 设置cocospod仓库

    pod repo update
    // pod setup
    

    相关文章

      网友评论

          本文标题:Cocospod 基本操作

          本文链接:https://www.haomeiwen.com/subject/ddrguxtx.html