Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xcode 4.6.3 中构建应用程序时出现以下编译器错误
Apple Mach-O 链接器错误 ld:架构 armv7 的 1 个重复符号 clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
Apple Mach-O 链接器错误
ld:架构 armv7 的 1 个重复符号
clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
原因是我在两个不同的类中使用了相同的类范围变量。不知道为什么这是一个问题,因为我认为它们对应用程序不是全局的,而对类来说只是全局的。这些类没有相互导入。也许这里有人可以提供一个正当的理由。
这里有一些代码让它更清楚。
ViewController1.m
@implementation ViewController1 int sliderSpeed = 500;
视图控制器2.m
@implementation ViewController2 int sliderSpeed = 500;