Hi,
I am struggling trying to compile a cocoa touch framework entirely written in swift and then distribute the output to be linked into another project.
The only way I made to work was to create a workspace and add both the app and the framework projects to it, but that does not really sound like distributing a module to me.
Is there a way to just import the custom framework into another project and access the framework's objects?
All the interfaces and classes in the framework are declared as public. In the other project I managed to import the framework and build with no error but when I try to use any class in the framework I got an undefined symbol error.
Am I doing something wrong or is this not doable at all?
Thanks for your help