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

ios - 在 Objective C 中使用类别


                                            <p><p>我有一个名为 <code>ViewMessages.m</code> 的文件,它变得非常冗长。我想重构并将我的部分方法放入一个单独的文件中。似乎类别是正确的方法,所以我在 <code>ViewMessages</code> 上创建了一个名为 <code>DataEngineViewMessages</code></p> 的 <code>Category</code>

<p>它创建了 2 个文件,<code>DataEngineViewMessages.h</code> 和 <code>DataEngineViewMessages.m</code></p>

<p><strong>我的问题:</strong>我需要在我原来的 <code>ViewMessage.h</code> 或 <code>.m 中 <code>#import "DataEngineViewMessage.h"</code> </code> 以访问我的新方法?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>不在 .h 文件中。类别 header 应导入<code>ViewMessages.h</code>,<em>如果需要</em>类别 header 应导入<code>ViewMessages.m</code>。这可以防止任何形式的循环。</p>

<p>通常你想区分应该公开的类别方法(在 header 中定义,可能像 <code>ViewMessages+DataEngine.h</code>)和供内部使用的类别方法(在 header 中定义可能像<code>ViewMessages+Private.h</code>)。前者不应该包含在 <code>ViewMessages</code> 中,而后者应该(同样,在 .m 文件中)。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 Objective C 中使用类别,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22338421/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22338421/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 Objective C 中使用类别