使用 Xcode 10.1和 Swift 4.2,我尝试了几乎所有的建议,但没有一个对我有用,然后我意识到我使用的一个依赖项与 Swift 4.2不兼容,这导致我在其他播客上得到这个错误。所以为了解决这个问题,我不得不把这个放在我的 Podfile的末尾,强迫这个播放器使用 Swift 4.0:
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['TKRadarChart'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end