Podfile 示例
專案的依賴項在名為 Podfile 的單個文字檔案中指定。CocoaPods 將解析庫之間的依賴關係,獲取生成的原始碼,然後在 Xcode 工作區中將它們連結在一起以構建專案。
-
建立一個 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
-
安裝依賴項。依賴項安裝的過程是通過專案目錄中的終端執行此命令來完成的:
pod install
-
將依賴項更新為新版本:
-
更新特定的 pod
pod update RxSwift
-
更新所有 pod
pod update