XCode无法从框架中查找导入的标头

时间:2015-02-14 17:02:42

标签: ios objective-c xcode swift

我收到一个错误,它无法找到头文件,但我已经通过"链接二进制文件库添加了文件"在构建阶段。

该文件是WhirlyGlobeComponent.h

我导入了... #import" WhirlyGlobeComponent.h"它说无法找到该文件。

我能做错什么。我已经清理了这个项目。

1 个答案:

答案 0 :(得分:0)

只需将.h and the .m文件拖放到swift项目中即可。然后Xcode应该为您创建一个Briding-Header.h文件。在那里你必须添加.h文件:

#import "WhirlyGlobeComponent.h"

之后,您应该可以在swift文件中使用WhirlyGlobeComponent而无需任何其他导入。