为 iOS 构建 OCUnit 应用程序测试目标时出现链接器错误

发布于 12-01 18:51 字数 805 浏览 1 评论 0原文

我的 OCUnit 目标中包含一个应用程序测试。我可以调用应用程序主机目标中的类的实例方法,但无法调用类方法。如果我调用一个类方法(如 alloc),我会收到以下链接器错误:

Undefined symbols for architecture armv6:
  "_OBJC_CLASS_$_DiceGameViewController", referenced from:
      objc-class-ref in DiceGameViewControllerTest.o
     (maybe you meant: _OBJC_CLASS_$_DiceGameViewControllerTest)
ld: symbol(s) not found for architecture armv6
collect2: ld returned 1 exit status

我认为这是因为 Objective-C 在链接时不需要访问对象文件来进行实例调用,但确实需要在链接时进行类调用的访问。有人可以指出我的文档来确认这一点吗?

此问题类似于以下问题:

OCUnit 中无法识别导入的文件

OCUnit 不允许我使用我自己的数据类型

I have an Application Test included in my OCUnit target. I can call instance methods on classes in my Application Host target, but I cannot call class methods. If I call a class method (like alloc), I get the following linker error:

Undefined symbols for architecture armv6:
  "_OBJC_CLASS_$_DiceGameViewController", referenced from:
      objc-class-ref in DiceGameViewControllerTest.o
     (maybe you meant: _OBJC_CLASS_$_DiceGameViewControllerTest)
ld: symbol(s) not found for architecture armv6
collect2: ld returned 1 exit status

I assume this is because Objective-C doesn't need access to the object file at link time to make instance calls, but does need access at link time for class calls. Can someone point me to documentation to confirm this?

This question is similar to these questions:

Imported files not recognized in OCUnit

OCUnit will not allow me to use my own data types

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文