I have a relatively simple question and I hope to get an answer on it.
Imagine I have a static library in iOS say MyLibrary.a
In this library say there is some .m file which calls: "#import SomeHeaderWhichDoesNotYetExist.h" -- however the thing is that, when the "#import SomeHeaderWhichDoesNotYetExist.h" is called, the SomeHeaderWhichDoesNotYetExist.h may not necessarily exist in the project (as suggested also by its title). e.g.,
#ifdef something #import SomeHeaderWhichDoesNotYetExist.h #endif When someone uses the Mylibrary.a -- he/she may then, later implement the SomeHeaderWhichDoesNotYetExist.h, and we want the MyLibrary.a to be able to automatically use it as specified in the code above. Do you think this is possible?
Thank you.