Here is my configuration:
Pod X : associated with MyProjectSharedCode , declares the SomeClass class (in Objective-C)MyProjectExtension : Today's extension, data MyProject with MyProjectMyProject : Companion app to configure MyProjectExtensionMyProjectSharedCode : Built-in environment for common code in MyProject and MyProjectExtension . Uses SomeClass .
I can not make it work. I tried:
- Importing
PodX.h into MyProjectSharedCode.h , but this results in a compiler error:
include a non-modular header inside the frame module
- Which led me to several Stackoverflow links, including this one . However, changing this option did not allow me to compile it. As @NachoSoto says in the accepted answer to the last comment, the answer does not seem to work with Xcode 6 B5.
Any help / conclusions would be greatly appreciated.
frameworks xcode swift cocoapods
DCMaxxx
source share