I made my own framework and saw that my test application could load the headers like
#include <global.h>
The problem is that this global.h has some more includes that are for instance in
<lol/head.h>
referring to the global.h. So the problem is that xcode cannot find those kind of headers, because when i create the framework, in the Target, my Copy Headers build phase has all the headers at the same level (the level of global.h) (all in the same folder in the framework).
Anyone can help me out on this? :) thks!