我收到一个错误,它无法找到头文件,但我已经通过"链接二进制文件库添加了文件"在构建阶段。
该文件是WhirlyGlobeComponent.h
我导入了... #import" WhirlyGlobeComponent.h"它说无法找到该文件。
我能做错什么。我已经清理了这个项目。
答案 0 :(得分:0)
只需将.h and the .m
文件拖放到swift项目中即可。然后Xcode应该为您创建一个Briding-Header.h
文件。在那里你必须添加.h
文件:
#import "WhirlyGlobeComponent.h"
之后,您应该可以在swift文件中使用WhirlyGlobeComponent而无需任何其他导入。