ios - Xcode 6.1 中的解析问题 - “Expected a type”
<p><p>我对 Xcode 有疑问:
编译失败,出现一些错误(见下图)。</p>
<p> <img src="/image/IDycr.png" alt="enter image description here"/> </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>编译器不知道 <code>Array</code> 是什么。您实际上是指 <code>NSArray *</code> 或者它是您的类型之一:那么您需要添加相应的 <code>#import</code> 语句。如果它是一个类,你也可以使用前向声明 <code>@class Array;</code>,但是你需要将它称为 <code>Array *</code>,因为 Objective-C 只支持指向对象实例。</p></p>
<p style="font-size: 20px;">关于ios - Xcode 6.1 中的解析问题 -“Expected a type”,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28604016/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28604016/
</a>
</p>
页:
[1]