【发布时间】:2011-02-15 23:47:14
【问题描述】:
我只能找到关于该主题的一点点信息。我现在的理解是
#import <my.h> // searches in the system paths
#import "my.h" // searches in the same dir as the source file - is that right?
我有一个静态库,其中 .h 文件位于不同的位置。我可以让编译器像在 VC++ 中那样使用 #import "my.h" 搜索新文件夹中的 .h 文件吗?
【问题讨论】:
标签: objective-c import