我将一些第三方源文件放在我项目的“第三方”文件夹中,然后将该文件夹拖到我的项目中。在 xcode 构建设置中,我指定Header search paths
为“$(SRCROOT)/Third party/”。但是xcode仍然不知道#import <pop/POPAnimatableProperty.h>
文件在哪里,只是在Third party/pop/
文件夹中。如果我像#import "POPAnimatableProperty.h"
or一样导入它#import <../pop/POPAnimatableProperty.h>
,那么它可以找到该文件。
手动更改所有导入是不可能的,那么如何解决这个问题?
提前致谢!