Podfile 示例

项目的依赖项在名为 Podfile 的单个文本文件中指定。CocoaPods 将解析库之间的依赖关系,获取生成的源代码,然后在 Xcode 工作区中将它们链接在一起以构建项目。

  1. 创建一个 podfile

    # Next line contains target platform settings
    platform :ios, '8.0'
    # Use dynamic Frameworks
    use_frameworks!
    
    # Target name
    target 'MyApp' do
      # List of target dependencies
      pod 'ObjectiveSugar', '~> 1.1'
      pod 'ORStackView', '~> 3.0'
      pod 'RxSwift', '~> 2.6'
    end
    
  2. 安装依赖项。依赖项安装的过程是通过项目目录中的终端执行此命令来完成的:

    pod install
    
  3. 将依赖项更新为新版本:

  • 更新特定的 pod

    pod update RxSwift
    
  • 更新所有 pod

    pod update
    

使用 Cocoapods