huu
huu

Reputation: 109

Header path inside of framework

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

include "subfolder/ClassName.h"

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

Answers (1)

Stavash
Stavash

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

Related Questions