ios - Xcode: Why can I #import a file from my static library that is a 'Project' header? -
i have 2 projects in workspace. framework project i'm developing , different application. reason in application project can't include public headers of framework project, can include project header file.
how import framework:
#import <myframework/myframework.h>
what xcode allow me compile:
#import <myframework/supersecretclass.h>
in framework have public headers , project headers configured correctly in 'copy headers' section of build phases (public header in public, other 'private' header in project.
anyone have ideas?
Comments
Post a Comment