OCUnit 的 UIImageView 错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的测试目标不知道 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.