作者:这辈子没有你 | 来源:互联网 | 2023-09-13 13:12
我正在尝试安装pod 'SVProgressHUD'
可可豆荚,但是在安装豆荚文件时出现以下错误。
[!] Unable to determine Swift version for the following pods:
- `HexColors` does not specify a Swift version and none of the targets (`FaveoHelpdeskPro_ObjC`) integrating it have the `SWIFT_VERSION` attribute set. Please contact the author or set the `SWIFT_VERSION` attribute in at least one of the targets that integrate this pod.
如何解决此问题?
尝试通过包含以下内容来设置Swift版本
ENV['SWIFT_VERSION'] = '5'
位于Podfile的顶部。
,
那是因为你的项目很老,从来没有在项目中设置过Swift版本。
尝试在项目中创建一个新的 swift 文件。 Xcode 将在项目构建设置中自动设置 Swift 版本。然后你再pod install
就可以解决了。