菜鸟教程小白 发表于 2022-12-13 13:06:30

ios - 我可以省略 .m 文件中的委托(delegate)声明吗


                                            <p><p>我是否应该像这样在 <code>@interface ()</code>block 中复制委托(delegate)声明:</p>

<p><strong>.h文件</strong></p>

<pre><code>@interface VKStartScreen : UIViewController &lt;UIAlertViewDelegate, VKSdkUIDelegate&gt;

@end
</code></pre>

<p><strong>.m 文件</strong></p>

<pre><code>@interface VKStartScreen () &lt;UIAlertViewDelegate, VKSdkUIDelegate&gt;

@end
</code></pre>

<p>或者我可以在 .m 文件中省略它吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以在任一文件中省略。你只需要它在一个地方。我个人将委托(delegate)声明放在 .m 中,除非其他一些类需要知道此类符合这些协议(protocol)。始终选择私有(private),如果出于某种原因需要公开它,请将其打开。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我可以省略 .m 文件中的委托(delegate)声明吗,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35606209/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35606209/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我可以省略 .m 文件中的委托(delegate)声明吗