2

Xcode 多年来一直困扰着我,像这样的更新

+++ b/Project/Base.lproj/Main.storyboard
@@ -890,8 +890,6 @@ some existing one.</string>
     <resources>
         <image name="TabBarButton" width="65" height="15"/>
         <image name="TabBarHome" width="25" height="25"/>
-        <image name="TabBarHome" width="25" height="25"/>
-        <image name="TabBarSettings" width="25" height="25"/>
         <image name="TabBarSettings" width="25" height="25"/>
         <image name="TrashCan" width="13" height="15"/>
     </resources>

你可能认为我真的有重复的行。好的,但是下次 Xcode 会这样做:

+++ b/Project/Base.lproj/Main.storyboard
@@ -890,8 +890,6 @@ some existing one.</string>
     <resources>
         <image name="AddBrick" width="65" height="15"/>
         <image name="TabBarHome" width="25" height="25"/>
+        <image name="TabBarHome" width="25" height="25"/>
+        <image name="TabBarSettings" width="25" height="25"/>
         <image name="TabBarSettings" width="25" height="25"/>
         <image name="TrashCan" width="13" height="15"/>
     </resources>

有什么办法可以预防吗?

4

1 回答 1

1

答案是不”。故事板是包含序列化对象图的复杂文档,以及这些对象的父级,以及故事板 GUI 的图形图。每当您触摸情节提要中的对象或更改情节提要中实例化的任何内容的类定义时,Xcode 都会进行大量更改。只需将其视为一个黑匣子。

于 2013-10-23T14:31:23.803 回答