I have a framework "A", framework "B" and a host app.
In the framework "A" I have some methods what I want to run IF the framework "B" is existing in the host app. How can I achieve that?
I tried this:
#if __has_include(<Framework_B/Framework_B.h>)
but it does not work. Framework "A" does not see the framework "B".