I am creating a static library which will later be used in multiple apps.
As in an Xcode project, if we have to import a specific file in every other file of the project, we import that file in prefix.pch. I have a similar requirement, to include a file in all other files of my static library.
So, is it possible to have a Precompiled header(prefix.pch) in a static library?
OR
Is there any way by which I can include a specific .h file in all other files of my static library?