菜鸟教程小白 发表于 2022-12-13 13:08:22

ios - 使用 Podfile 设置组织和类前缀


                                            <p><p>我有一个使用 CocoaPods 的项目。使用的 pod 之一是 devpod。
因为有时很容易做到,所以我在工作区的 pod 项目的 devpod 中创建了一个新文件,然后直接运行 pod install 。
遗憾的是 pod 项目没有设置组织和类前缀,因此每个文件的头部都缺少版权行。我总是需要自己添加。
我可以为 pod 项目设置组织和类前缀并且它可以工作,但是一旦再次运行 pod install,这些设置就会消失。</p>

<p>有没有办法配置一个 podfile 来为我的工作区中的 pod 项目设置 oranization 和 class 前缀,这样我就不需要每次都手动进行(并且大部分时间都忘记了)?</p>

<p>感谢您的帮助!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>将此附加到您的 Podfile 中,您应该可以开始使用了。</p>

<pre class="lang-rb prettyprint-override"><code>post_install do |installer|
    installer.pods_project.root_object.attributes[&#34;CLASSPREFIX&#34;] = &#34;ABC&#34;
    installer.pods_project.root_object.attributes[&#34;ORGANIZATIONNAME&#34;] = &#34;my company&#34;
end
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 Podfile 设置组织和类前缀,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35760150/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35760150/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 Podfile 设置组织和类前缀