ios – “架构x86_64的未定义符号:”Branch.io出错

我试图在我的iOS应用程序中使用Branch.io iOS SDK,当我尝试编译时遇到以下错误:

Undefined symbols for architecture x86_64:
“_OBJC_CLASS_$_CSSearchableIndex”, referenced from:
objc-class-ref in BranchCSSearchableItemAttributeSet.o “_OBJC_CLASS_$_CSSearchableItem”, referenced from:
objc-class-ref in BranchCSSearchableItemAttributeSet.o “_OBJC_CLASS_$_CSSearchableItemAttributeSet”, referenced from:
_OBJC_CLASS_$_BranchCSSearchableItemAttributeSet in BranchCSSearchableItemAttributeSet.o
“_OBJC_METACLASS_$_CSSearchableItemAttributeSet”, referenced from:
_OBJC_METACLASS_$_BranchCSSearchableItemAttributeSet in BranchCSSearchableItemAttributeSet.o ld: symbol(s) not found for
architecture x86_64 clang: error: linker command failed with exit code
1 (use -v to see invocation)

正如tutorial所描述的那样,我将Branch-SDK文件夹正确添加到项目中,我配置了PLST,并添加了AppDelegate.m中的所有代码.我跳过第3步启用通用链接,因为我还不需要它.

我错过了什么可能导致这种情况?对于这种与其他框架的错误,它往往是由类的错误声明引起的,但我没有看到我在做错的地方.

最佳答案 对于我在Podfile中取消注释以下行并重新运行安装解决了XCode中的这类问题:

use_frameworks!

做一个

pod install

并尝试再次在XCode中清理和运行应用程序,它应该工作.
它对我有用.

点赞