我正在使用更新的Xcode 8.0。如何使用可可豆荚安装alamofire 4.0。我试过这个https://github.com/Alamofire/Alamofire。我转换swift时收到错误
答案 0 :(得分:8)
只需按照以下简单步骤>>>>>
进行操作即可1 打开终端并输入 gem install cocoapods
2 创建Xcode项目并在终端设置项目目录并编写 pod init
3 将创建一个pod文件,将其打开并写入 -
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'Alamofire', '~> 4.0'
end
4 保存初始文件 cmd + S
5 最后写 pod install
如需完整参考,请参阅Alamofire
答案 1 :(得分:4)
试试这个:
pod 'Alamofire', :git => 'https://github.com/Homely/Alamofire.git', :branch => 'ios8'
答案 2 :(得分:1)
请按照以下步骤安装Pod:
1)打开终端。
2)输入pod
3)您应该能够看到用法和命令...
如果(不是这种情况) {
键入:gem install cocoapods
遵循步骤4:
}其他{
遵循步骤4:
}
4)导航到终端中的项目目录。
5)现在键入:pod init
这将根据您的项目配置在您的项目目录中生成pod文件...如果启用了测试,
UITests ...然后pod文件的外观将有所不同。
6)您需要找到以下行:
target 'your project name will come here by default' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for <your project name will come here by default>
//Add the below line:
pod 'Alamofire', '~> 4.0'<br>
7)现在键入:pod install
就是这样!(将安装Pod,您可以使用所需的方法...!)
答案 3 :(得分:-1)
pod 'Alamofire', '~> 4.9.1'