简体   繁体   中英

How to add new framework to existing project using cocoapods?

I have my existing project QuickGame where I would like to add frameworks ( SwiftyJSON and Alamofire ) using cocoapods. I installed cocoapods and I created a pod file in my app folder, but now, I don't know how this pod file should looks like, to instal this frameworks in my existing project.

Your pod file should look like this :

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

Then go to the terminal -> cd [your source folder where the pod file is hosted] -> then do : pod install

let me know if this help you

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM