我有一个大问题。当我尝试为 iPhone 4 英寸(64 位)编译我的 iOS 项目时,我的编译器给了我错误:“未找到架构 x86_64 的符号”。所以我想,没问题,让我们只编译 32 位。我在构建设置中从标准架构中删除了“arm64”。
现在编译器给了我另一个错误:
Undefined symbols for architecture i386:
"_OBJC_CLASS_$_TKCoverflowCoverView", referenced from:
objc-class-ref in CoverFlowViewController.o
"_OBJC_CLASS_$_TKCoverflowView", referenced from:
objc-class-ref in CoverFlowViewController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
有谁知道如何解决这个问题?
在 32 位模拟器中编译时,该项目构建良好。
提前致谢!