Alamofire 与 Swift 3.0 和部署目标 8.0
Posted
技术标签:
【中文标题】Alamofire 与 Swift 3.0 和部署目标 8.0【英文标题】:Alamofire with Swift 3.0 & Deployment Target 8.0 【发布时间】:2016-10-21 09:39:07 【问题描述】:如何将 Alamofire 与 Swift 3.0 集成并且还必须提供对 ios 8 的支持?除了 Alamofire 还有其他选择吗?
【问题讨论】:
【参考方案1】:升级到最新的 Cocoapods 这样做
gem install cocoapods --pre
似乎解决了我的情况。
【讨论】:
我认为我们必须使用 AlamofireDomain。 Alamofire with Swift 3.0 最低部署目标是iOS 9,我不知道这个命令(升级cocoapods)如何解决这个问题......gem install cocoapods --pre
命令允许您安装 cocoapods 的预发布版本,@jaimesh-patel 的问题没有链接。【参考方案2】:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
如果您想要所有平台,则仅在此行之上规范使用此 alamofire 平台,然后删除此平台行,第二件事是部署目标选择 8.0,因此所有平台都在使用 alamofire。
use_frameworks!
target '<Your Target Name>' do
pod 'Alamofire', '~> 4.4'
end
【讨论】:
以上是关于Alamofire 与 Swift 3.0 和部署目标 8.0的主要内容,如果未能解决你的问题,请参考以下文章
Swift 3.0 Alamofire 4.0 - Domain=NSURLErrorDomain Code=-999 “取消”
支持 swift 3.0 和 iOS 8.0+ 的等效 Alamofire 库
JSONResponseSerializer 和 HTTPURLResponse Swift 3.0 的 Alamofire4 问题