我正在尝试调试我的Beta,该Beta在iOS 10,Swift 3之前确实运行良好,但我看不到结尾。

我无法建立它。我的应用程序在Swift 2.3(Xcode 8)中
我的Library FileBrowser版本0.1.4出现错误

我在Podfile上添加

post_install do |installer|
  installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
            config.build_settings['SWIFT_VERSION'] = '2.3'
        end
    end
end


但是我的FileBrowser库仍然出现编译错误
错误:


  PreviewItemURL的类型具有与协议“ QLPreviewItem” PreviewManager.swift所需的不同的可选性。

最佳答案

库FileBrowser不支持Swift 2.3仅支持swift 3。
 两种选择:
-更改库以浏览文件
-将所有项目切换到快速3

10-08 16:56