OCUnit 的 UIImageView 错误

发布于 2024-10-16 20:33:58 字数 235 浏览 6 评论 0原文

我正在使用 OCUnit 来测试我的应用程序,但是遇到了一些麻烦。当我尝试包含一个包含 UIImageView 类型的实例变量的类时,出现以下错误:“UIImageView 之前预期的说明符限定符列表”

我的声明代码是:

UIImageView *_icon;

我无法弄清楚导致此情况的原因,并且它只会发生当我尝试使用我的测试目标构建我的应用程序时。

谢谢

am using OCUnit to test my application however am running into some trouble. When I attempt to include a class that contains an instance variable of type UIImageView, I get the following error: "Expected specifier-qualifier-list before UIImageView"

My declaration code is:

UIImageView *_icon;

I can't work out whats causing this and it only happens when I attempt to build my application using my test target.

Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉生梦死 2024-10-23 20:33:58

您的测试目标不知道 UIImageView 是什么。它需要自己的预编译标头引用 UIKit(或者您可以在该文件中导入 UIKit),并且需要链接该框架。

Your test target doesn't know what UIImageView is. It needs its own precompiled-header referencing UIKit (or you could import UIKit in that file), and it needs to link that framework.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文