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.
我已经在我的应用程序中实现了 Reachability.h 类。
当我AddThis为 iOS 实现此错误时:
AddThis
“_OBJC_CLASS_$_ATReachability”,引用自: libAddThis.a(ATGenericUtility.o) 中的 Objc-class-ref 未找到架构 armv6 Collect2 的符号:ld 返回 1 个退出状态
这是什么意思,我该如何解决?
1)您确定正在为您的项目编译 ATReachability.m(在右侧的文件属性中,确保为您的项目目标选中该框 - 我经常不小心只将文件添加到我的单元测试目标,而不是主应用程序!)
2) 'architecture armv6' - 你在为 armv7 和 armv6 编译 ATReachability 吗?查看项目的构建设置,应该有一个“架构”部分 - 确保其中包含 armv6。