如何使用cocoapods向现有项目添加新框架?

时间:2016-01-18 20:45:58

标签: ios iphone xcode swift cocoapods

我有我现有的项目QuickGame,我想使用cocoapods添加框架(SwiftyJSONAlamofire)。我安装了cocoapods并在我的app文件夹中创建了一个pod文件,但现在,我不知道这个pod文件应该是什么样子,在我现有的项目中安装这个框架。

1 个答案:

答案 0 :(得分:2)

您的pod文件应如下所示:

platform :ios, '9.0'
use_frameworks!

target 'YOUR_TARGET_NAME' do
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Alamofire',  :git => 'https://github.com/Alamofire/Alamofire.git'
end

然后转到终端 - > cd [托管pod文件的源文件夹] - >然后执行:pod install

请告诉我这是否有帮助