Including headers from custom framework in XCode Including headers from custom framework in XCode xcode xcode

Including headers from custom framework in XCode


Just adding the path to the directory containing the framework to FRAMEWORK_SEARCH_PATHS will work. Unless it's a typo, your problem seems to be

#import <SomeFramework.h>

which should be

#import <SomeFramework/SomeFramework.h>