For the following architecture:
_Code
___CustomFramework
___ProjectA
_____ProjectA
_____Workspace
_____Podfile
_____Pods
I am using the ProjectA workspace (generated by podfile) and I have enabled CustomFramework inside ProjectA successfully, I can use the methods from CustomFramework inside ProjectA.
Now I would like to share ProjectA modules with CustomFramework. Therefore, I can use the methods from ProjectA modules inside CustomFramework. That I'm stuck and need help.
What I have tried so far:
But I'm not sure if this is the right way or good syntax for linking CustomFramework
PODFILE
platform: ios, '8.0'
link_with 'ProjectA', 'CustomFramework'
pod 'nameofpod', '3.1.0'
I also installed "Allow non-modular inclusion in Framework Modules" and set it to YES for the Project file (blue) and Custom Framework
But CustomFramework still doesn't recognize my objects: - /
source share