为 Swift 2 更新 Alalmofire 和 SwiftyJSON
Updating Alalmofire and SwiftyJSON for Swift 2
我是处理 pods 的新手,现在我正在尝试将 alamofire 更新到 alamofire 3.0 以及将 SwiftyJSON 更新到 2.3.0 以获得 Swift 2.0支持
进入项目目录后:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3.0'
但我收到这些错误:
-bash: https://github.com/CocoaPods/Specs.git: No such file or directory
Mes-iMac:MyProject.xcodeproj Me$ platform :ios, '8.0'
-bash: platform: command not found
Mes-iMac:MyProject.xcodeproj Me$ use_frameworks!
-bash: use_frameworks!: command not found
Mes-iMac:MyProject.xcodeproj Me$
Mes-iMac:MyProject.xcodeproj Me$ pod 'Alamofire', '~> 3.0'
[!] Unknown command: `Alamofire,`
[!] Unknown command: `SwiftyJSON,`
有什么帮助吗?谢谢
您可以访问 https://cocoapods.org/ 并找到您的图书馆。然后像这样复制 link:
在您的 Podfile
中使用 pod 'SwiftyJSON', '~> 2.3'
和 pod 'Alamofire', '~> 3.1'
Podfile
将如下所示:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'YourProjectName' do
pod 'SwiftyJSON', '~> 2.3'
pod 'Alamofire', '~> 3.1'
end
和运行 再次安装pod
我是处理 pods 的新手,现在我正在尝试将 alamofire 更新到 alamofire 3.0 以及将 SwiftyJSON 更新到 2.3.0 以获得 Swift 2.0支持 进入项目目录后:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3.0'
但我收到这些错误:
-bash: https://github.com/CocoaPods/Specs.git: No such file or directory
Mes-iMac:MyProject.xcodeproj Me$ platform :ios, '8.0'
-bash: platform: command not found
Mes-iMac:MyProject.xcodeproj Me$ use_frameworks!
-bash: use_frameworks!: command not found
Mes-iMac:MyProject.xcodeproj Me$
Mes-iMac:MyProject.xcodeproj Me$ pod 'Alamofire', '~> 3.0'
[!] Unknown command: `Alamofire,`
[!] Unknown command: `SwiftyJSON,`
有什么帮助吗?谢谢
您可以访问 https://cocoapods.org/ 并找到您的图书馆。然后像这样复制 link:
在您的 Podfile
中使用pod 'SwiftyJSON', '~> 2.3'
和 pod 'Alamofire', '~> 3.1'
Podfile
将如下所示:
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'YourProjectName' do
pod 'SwiftyJSON', '~> 2.3'
pod 'Alamofire', '~> 3.1'
end
和运行 再次安装pod