菜鸟教程小白 发表于 2022-12-13 01:01:29

ios - 单个文件中的多个 @implementation block


                                            <p><p>我一直在查看来自 Apple 的一些示例代码,特别是使用 <code>AVFoundation</code> 框架的 <code>AVCam</code> 项目。</p>

<p>它是主视图 Controller 文件,开发者有多个<code>@implementation</code>部分:</p>

<pre><code>@implementation AVCamViewController
@implementation AVCamViewController (InternalMethods)
@implementation AVCamViewController (AVCamCaptureManagerDelegate)
</code></pre>

<p>它们也有相应的 <code>@interface</code> 部分。</p>

<p>所有这些都在单个 <code>AVCamViewController.m</code> 文件中。我以前从未见过这样做,我想知道它背后的原理。</p>

<p>这只是个人风格吗? </p>

<p>它有什么固有的优势吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>它们被称为类别。这是一个很好的解释:<a href="https://stackoverflow.com/a/864877/865967" rel="noreferrer noopener nofollow">https://stackoverflow.com/a/864877/865967</a> </p>

<p>我确信其他人可以提供更具体的原因,但我认为当人们在同一个 .h/.m 文件中使用这种模式时,它只是为了可读性和分离。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 单个文件中的多个 @implementationblock ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14752748/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14752748/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 单个文件中的多个 @implementation block