0

I'm developing a Swift framework and need to implement Facebook login in it. However when I try to include the FacebookSDK into the umbrella header I get the following:

include of non-modular header inside framework module <MyModule>

I have looked at Xcode 6 / Beta 4: using bridging headers with framework targets is unsupported

But I can't add the framework headers to my public headers as suggested in the answer. Has anyone managed to solve this, or know how to import a Framework into a Framework?

Community
  • 1
  • 1
Jon Andersen
  • 496
  • 6
  • 20

1 Answers1

0

So I found a workaround.

I am implementing the integration with the framework in a Objective-C file and exposing this methods to my swift.

Jon Andersen
  • 496
  • 6
  • 20
  • What I did was to: implement the integration with the framework in a Objective-C file and exposing the methods to my swift. – Jon Andersen Oct 24 '14 at 16:22