Reputation: 109
I'm working with making framwork project in iOS. I want to change whole project to framwork and use it in other application. I make all header files to public, but header file include other header files like this
but if I use it in other application, can't find the "subfolder/ClassName.h" maybe because of that files are in same "/Headers" folder.. How can I make it working ??
Upvotes: 0
Views: 1087
Reputation: 14304
Inside your project's build settings, add the direct path for all header files under "Header Search Paths" and make it recursive in case there are any subfolders that also need inclusion.
Upvotes: 1