I can only find a little bit of information on the topic. My understand right now is that
#import <my.h> // searches in the system paths
#import "my.h" // searches in the same dir as the source file - is that right?
I have an static library with .h files in a different location. Can I have the compiler search a new folder for .h files with #import "my.h" like I would in VC++