运行pod更新后构建失败

时间:2015-09-21 23:30:51

标签: ios swift xcode cocoapods

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

我试过了

  • 将cocoapods更新到最新版本但没有任何区别
  • pod cache clean --all,也没有区别
  • 已确认ONLY_ACTIVE_ARCH在广告连播和我的应用中设置相同(均已设置)
  • 恢复到以前版本的库,尽管它们在使用前几个月没有问题仍然有编译错误

未编译的库是SwiftyJSON和Kingfisher。

以下是生成错误的示例,左窗格中的选定错误是右窗格中的顶部错误。 Here is a sample of the errors being produced, the selected error in the left pane is the top error in the right pane

还有哪些其他问题会导致这个问题?

编辑: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'

1 个答案:

答案 0 :(得分:0)

所以我实际上没有解决导致这种情况的原因,但更新到Xcode 7修复了它。