菜鸟教程小白 发表于 2022-12-12 15:59:03

ios - 有什么方法可以防止对 Storyboard 进行愚蠢的 Xcode 更新?


                                            <p><p>Xcode 多年来一直因为这样的更新而困扰我</p>

<pre><code>+++ b/Project/Base.lproj/Main.storyboard
@@ -890,8 +890,6 @@ some existing one.&lt;/string&gt;
   &lt;resources&gt;
         &lt;image name=&#34;TabBarButton&#34; width=&#34;65&#34; height=&#34;15&#34;/&gt;
         &lt;image name=&#34;TabBarHome&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
-      &lt;image name=&#34;TabBarHome&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
-      &lt;image name=&#34;TabBarSettings&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
         &lt;image name=&#34;TabBarSettings&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
         &lt;image name=&#34;TrashCan&#34; width=&#34;13&#34; height=&#34;15&#34;/&gt;
   &lt;/resources&gt;
</code></pre>

<p>你可能认为我确实有重复的行。好的,但是下次 Xcode 会这样做:</p>

<pre><code>+++ b/Project/Base.lproj/Main.storyboard
@@ -890,8 +890,6 @@ some existing one.&lt;/string&gt;
   &lt;resources&gt;
         &lt;image name=&#34;AddBrick&#34; width=&#34;65&#34; height=&#34;15&#34;/&gt;
         &lt;image name=&#34;TabBarHome&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
+      &lt;image name=&#34;TabBarHome&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
+      &lt;image name=&#34;TabBarSettings&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
         &lt;image name=&#34;TabBarSettings&#34; width=&#34;25&#34; height=&#34;25&#34;/&gt;
         &lt;image name=&#34;TrashCan&#34; width=&#34;13&#34; height=&#34;15&#34;/&gt;
   &lt;/resources&gt;
</code></pre>

<p>有什么办法可以预防吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>答案是“不”。 Storyboard是包含序列化对象图的复杂文档,以及这些对象的父级,以及 Storyboard GUI 的图形图。每当您触摸 Storyboard 中的对象或更改 Storyboard 中实例化的任何内容的类定义时,Xcode 都会进行大量更改。把它想象成一个黑盒子。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 有什么方法可以防止对 Storyboard 进行愚蠢的 Xcode 更新?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19544157/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19544157/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 有什么方法可以防止对 Storyboard 进行愚蠢的 Xcode 更新?