菜鸟教程小白 发表于 2022-12-13 16:12:57

ios - 协议(protocol)构象错误 Objective C


                                            <p><p>在 <strong>DataProvider.h</strong></p>

<pre><code>@protocol NewDataProviderProtocol

- (void)fetchNewData;

@end
</code></pre>

<p>在<strong>SomeClass</strong></p>

<pre><code>#import DataProvider.h
@interface SomeClass :NSObject &lt;NewDataProviderProtocol&gt;

@end
</code></pre>

<p>当我尝试使 SomeClass 符合 <strong>NewDataProviderProtocol</strong> 时,它会说,</p>

<p><code>没有名为“NewDataProviderProtocol”的类型或协议(protocol)</code></p>

<p>这很奇怪,因为我已经导入了声明协议(protocol)的 headerDataProvider.h。</p>

<p>所以我在 <strong>SomeClass</strong> 的接口(interface)之前转发声明 <strong>NewDataProviderProtocol</strong> 但 xcode 警告</p>

<pre><code>Cannot find definition for **NewDataProviderProtocol**
</code></pre>

<p>这是什么原因和解决方法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>A.原因</p>

<p>您可能有一个包含循环,因为您也将 SomeClass.h 导入 DataProvider.h。这会导致未声明的标识符。</p>

<p>为什么会这样?举个例子:</p>

<pre><code>// Foo.h
#import &#34;Bar.h&#34;
@interface Foo : NSObject
…// Do something with Bar
@end


// Bar.h
#import &#34;Foo.h&#34;
@interface Bar : NSObject
…// Do something with Foo
@end
</code></pre>

<p>如果你编译,比如说 Foo.h,预编译器会扩展这个:</p>

<p>他得到……:</p>

<pre><code>// Foo.h
#import &#34;Bar.h&#34;
@interface Foo : NSObject
…// Do something with Bar
@end
</code></pre>

<p>...导入 Bar.h(并删除评论...但让我们专注于主题。)...</p>

<pre><code>// Foo.h
   // Bar.h
   #import &#34;Foo.h&#34;
   @interface Bar : NSObject
   …// Do something with Foo
   @end

@interface Foo : NSObject
…// Do something with Bar
@end
</code></pre>

<p>Foo.h 不会再次被导入,因为它已经被导入了。最后:</p>

<pre><code>   // Bar.h
   @interface Bar : NSObject
   …// Do something with Foo
   @end

@interface Foo : NSObject
…// Do something with Bar
@end
</code></pre>

<p>这很清楚:如果A依赖B,B依赖A,那么串行数据流作为一个文件,不可能同时让A在B之前,B在A之前。 (文件不是相对论的主题。)</p>

<p>B.解决方案</p>

<p>在大多数情况下,您应该给代码一个层次结构。 (有很多原因。没有进口问题是最不重要的问题之一。)在您的代码中,将 SomeClass.h 导入 DataProvider.h 看起来很奇怪。</p>

<p>遇到这样的问题是代码异味。尝试隔离并修复其原因。不要将代码片段移动到不同的位置以找到它工作的速度。这是抽奖。</p>

<p>C.结构</p>

<p>通常你有一个期望其他人遵守协议(protocol)的类。举个例子:</p>

<pre><code>// We declare the protocol here, because the class below expects from other classes to conform to the protocol.

@protocol DataSoure

@end

@interface Aggregator : NSObject
- (void)addDataSource:(id&lt;DataSource&gt;)dataSource
// We are using a protocol, because we do not want to restrict data sources to be subclass of a specific class.
// Therefore in this .h there cannot be an import of that – likely unknown - class
@end
</code></pre>

<p>SomeClass,符合协议(protocol)的</p>

<pre><code>#import &#34;Aggregator.h&#34;

@interface SomeClass:NSObject&lt;DataSource&gt;

@end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 协议(protocol)构象错误 Objective C,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/37065472/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/37065472/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 协议(protocol)构象错误 Objective C