运行 pod 更新后构建失败

Build failure after running pod update

I 运行 pod update 更新了两个库。然后我打开 xcode 并尝试构建和 运行 应用程序,但是更新的库都无法构建,一个给出了 65 个编译错误,另一个给出了 27 个。

我试过了

未编译的库是 SwiftyJSON 和 Kingfisher。

这是正在产生的错误示例,左窗格中选定的错误是右窗格中的最上面的错误。

还有哪些问题可能导致此问题?

编辑:pod 文件

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!

pod 'Starscream', '~> 0.9.3'
pod 'Kingfisher', '~> 1.5'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git', :branch => 'master'

所以我实际上并没有解决这个问题的原因,但更新到 Xcode 7 修复了它。