在快速iOS应用程序中使用FBSDK的问题

前端之家收集整理的这篇文章主要介绍了在快速iOS应用程序中使用FBSDK的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用FBSDK在 swift中编写一个iOS 8应用程序,以允许用户登录到我的应用程序.到目前为止,我已经使用Bridging-Header.h文件在swift中使用FBSDK v3.25成功实现了登录功能,并根据FB开发者网站上的说明更新了info.plist.现在我想制作一个应用程序(或更新我的当前版本)到FBSDK v4.01,但是当我按照同样的过程将其集成到我的应用程序中时,我会收到以下错误
-> FBSDKAppLinkResolver.h

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FacebookSDK/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h:21:9: Include of non-modular header inside framework module 'FBSDKCoreKit.FBSDKAppLinkResolver'

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FacebookSDK/FBSDKCoreKit.framework/Headers/FBSDKAppLinkResolver.h:21:9: Include of non-modular header inside framework module 'FBSDKCoreKit.FBSDKAppLinkResolver'

-> Bridging-Header.h

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FBLoginUsingSDK4/Bridging-Header.h:12:9: Could not build module 'FBSDKCoreKit'

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FBLoginUsingSDK4/Bridging-Header.h:13:9: Could not build module 'FBSDKLoginKit'

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FBLoginUsingSDK4/Bridging-Header.h:12:9: Could not build module 'FBSDKCoreKit'

->FBSDKLoginButton.h

    /Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FacebookSDK/FBSDKLoginKit.framework/Headers/FBSDKLoginButton.h:21:9: Could not build module 'FBSDKCoreKit'

    Failed to import bridging header '/Users/danieloram/Desktop/IOS/SWIFT/FBLoginUsingSDK4/FBLoginUsingSDK4/Bridging-Header.h'

最明显的事情是最后一个错误,表示桥接头无法找到,但它是在同一个地方,因为当我使用FBSDK 3.25?

此外,FaceBook开发人员网站上的所有文档和教程都是obj-c,因此找到一个解决方案是一个非常令人沮丧的过程.任何人都可以帮助诊断我做错了什么?任何帮助是赞赏!

更新

暂时我已经设法编译我的应用程序,按照Facebook开发人员门户中的说明,并通过在终端中运行以下命令从FBSDK中删除所有模块

rm -r ~/Documents/FacebookSDK/FBSDKCoreKit.framework/Modules/
rm -r ~/Documents/FacebookSDK/FBSDKLoginKit.framework/Modules/
rm -r ~/Documents/FacebookSDK/FBSDKShareKit.framework/Modules/

这是我的解决方法,直到正确的修复被释放.

解决方法

这是一个错误,Facebook目前正在将其分配给适当的团队.

获取此问题的更新,请按照以下链接

https://developers.facebook.com/bugs/362995353893156/

并命中订阅.

有些人使用这个链接的答案找到了成功(没有一个为我工作):

Facebook iOS8 SDK build module error for FBSDKCoreKit

原文链接:https://www.f2er.com/iOS/329335.html

猜你在找的iOS相关文章