我想将TwitterAuthHelper.h文件中的目标c代码导入到我的swift代码中。
之后我将头文件添加到我的项目中,我创建了Bridging Header文件,我在其中定义了“#import”TwitterAuthHelper.h“”。
The Bridging file that i added ' #import "TwitterAuthHelper.h" '
然而,当我想使用TwitterAuthHelper(firebaseRef:....在swift文件中,它说“使用未解析的标识符'TwitterAuthHelper'”,即使我在桥接头文件中定义了头文件的导入
The Swift file that i would like to import the objective C code into
非常感谢任何帮助。
答案 0 :(得分:2)
我有一些经验,你应该确保你正确命名你的头文件。你也清理你的构建,然后重新构建它。
答案 1 :(得分:0)
我解决了这个问题
插入#import <Accounts/Accounts.h>
在文件TwitterAuthHelper.h
中并清理项目。