No such module FBSDKCoreKit error

后端 未结 4 849
别跟我提以往
别跟我提以往 2020-12-19 12:12

I am trying to add the Facebook SDK to my iOS 9.0 Swift app in Xcode. I did the install according to the FB-dev instructions. However, when I add the header to my AppDelegat

4条回答
  •  感动是毒
    2020-12-19 12:34

    With CocoaPods, swift 2.1, and iOS 9, I tried adding it to the bridge header and it works fine, for example:

    #ifndef MY_Bridge_Header_h
    #define MY_Bridge_Header_h
    
    #import 
    #import 
    // ... other imports
    
    #endif /* MY_Bridge_Header_h */
    

提交回复
热议问题