1. The project I'm working of will consist of several bundles,
each containing a different part of my app.
My problem is now:
How do I have to "#import" header files spread over different
*.bproj directories?
example:
/* in mainBundle file I write*/
#import "anyName.bproj/anyName.h"
#import "anotherName.bproj/anotherName.h"
/* in anyName.m I want to import */
#import "../mainBundleFile.h"
/* in anotherNameFile.m I want to import */
#import "../mainBundleFile.h"
But when I want to compile something like this, it seems like I'm getting a recursive import of the bproj files, resulting in an inability to find certain files! WHY?
I hope anyone understands my problem and knows a solution to it.
(Maybe it's the best way is to ignore the example ;-)