oc项目中 报Could not find auto-linked library 'swiftObjectiveC'/Could not find auto-linked framework 类错误

更新了FacebookSDK 9.0.0 之后出现了以下的报错。
image.png

原来是三方库中加入了swift库但是没有找到siwft库的文件导致的。

解决办法

建立一个空白swift文件

在 Bulid Setting -> Build Options 中的Always Embed Swift Standard Libraries 改为 YES

允许 target 使用 swift 代码,开启这个配置后 Swift 的标准库将能够在该项目使用(注意:使用 oc和 swift 混编可能导致包体积变大十几兆)

你可能感兴趣的:(oc项目中 报Could not find auto-linked library 'swiftObjectiveC'/Could not find auto-linked framework 类错误)