I am developing an iOS Real Framework with XCode. This Framework (A)
needs an external framework (B)
to compile. For example:
A FRAMEWORK
+Frameworks
-B FRAMEWORK
It is imported in A by using:
#import<BFRAMEWORK/bframework.h>
I create the A.framework
to be linked in a project.
The problem is when I link this A Framework
in a project. The project returns "BFRAMEWORK/bframework.h
" not found.
I want to include B framework
in A.framework
so not to need to add B framework
also in my project. For example:
MY PROJECT
+Frameworks
-A.Framework (with B Framework included inside).
Do you know how to do this? or another way to do this?
Thank you!