如何在Xcode 10.1中添加Alamofire

问题描述 投票:3回答:3

我在使用CocaPods添加Alamofire后编译应用程序时遇到以下错误。

error: SWIFT_VERSION '5.0' is unsupported, supported versions are: 3.0, 4.0, 4.2. (in target 'Alamofire')

Podophile:caspets

我正在关注pod 'Alamofire', '~> 5.0.0-beta.5'在我的link项目中添加Alamofire

Swift 5
ios cocoapods alamofire
3个回答
5
投票

Xcode Version: 10.1 添加了Swift 5XCode的支持。要使用version 10.2Alamofire,您需要更新您的Swift 5版本。其他建议是将你的XCode版本降级到Alamofire或在pod设置中将4.8.2版本更改为Swift


Good luck :)

1
投票

4.2版本支持Swift 5。你不能在XCode 10.2中使用Alamofire的beta版本。要在XCode 10.1版本中使用Alamofire,您只需使用它即可

XCode 10.1

代替

pod 'Alamofire'

希望这会有所帮助。


1
投票

将Xcode更新到10.2或下载支持Swift 5.0的最新Xcode。最好保持更新,而不是使用任何库的最新版本到旧的Xcode版本。从Xcode 10.2开始,它支持Swift 5

© www.soinside.com 2019 - 2024. All rights reserved.