How to avoid Xcode gratuitous edits to storyboard files? How to avoid Xcode gratuitous edits to storyboard files? xcode xcode

How to avoid Xcode gratuitous edits to storyboard files?


Apple says it's a known issue:

This is a follow up to Bug ID# 9847336. After further investigation it has been determined that this is a known issue, which is currently being investigated by engineering. This issue has been filed in our bug database under the original Bug ID# 9056156. The original bug number being used to track this duplicate issue can be found in the State column, in this format: Duplicate/OrigBug#.


After attempting many different solutions to get around this extremely annoying bug, I've found one method that works (it is certainly not a "fix", but a workaround).

Lock controllers when you're done with them.

Select a view controller in a storyboard, open the Identity inspector, and at the bottom in the Document section, you'll see a Lock dropdown. Select "All Properties" from the lock drop down.

If you do this for all of the controllers giving you issues (or just all of the controllers in general, even), you'll notice when you open the storyboard, Xcode will still modify the frames of various elements, but then immediately undo the changes.

This then leads to the development cycle being:

  1. Unlock a view controller
  2. Perform any necessary changes
  3. Lock the view controller
  4. Commit

Locking also works on a view-by-view case if that suits your needs better.

The bug has been around for quite some time now and it doesn't appear to be getting fixed any time soon, so unfortunately this will have to suffice for now.


I personally feel that knowing that it's a known bug doesn't exactly fix the issue. Here's what I figured out so far and how to keep them from coming up.

NOTE: This is for a storyboard with AutoLayout enabled. I haven't yet figured it out yet for manual storyboards.

Below is an example of a button.

<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ebd-ny-Ill">    <rect key="frame" x="97" y="5" width="135" height="30"/>    <color key="backgroundColor" white="0.94557291669999999" alpha="1" colorSpace="calibratedWhite"/>    <constraints>        <constraint firstAttribute="width" constant="86" id="bXV-mS-ksp">            <variation key="heightClass=regular" constant="135"/>        </constraint>    </constraints>    <fontDescription key="fontDescription" type="system" pointSize="13"/>    <state key="normal" title="See Full Menu">        <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>    </state>    <variation key="default">        <mask key="constraints">            <exclude reference="bXV-mS-ksp"/>        </mask>    </variation>    <variation key="heightClass=regular" misplaced="YES">        <rect key="frame" x="97" y="5" width="135" height="28"/>        <mask key="constraints">            <include reference="bXV-mS-ksp"/>        </mask>    </variation>    <connections>        <action selector="showMenu:" destination="eQk-yf-uDh" eventType="touchUpInside" id="xOP-Se-FXQ"/>    </connections></button>

If you take a look, you'll see that the button has an element called <rect/> This defines the size and position of the UI item. If you look below, you'll also see an element called <variation/> that describes the change in position based on the size class. In order to fix the position for this, we have to use the following steps:

  1. Take a look at the warning that shows up in Xcode. Take note of what needs to be changed for that UI element.
  2. Open the storyboard in an external (text) editor.
  3. Find the UI element in the storyboard.
  4. Change the value to match what the warning is suggesting in both <rect/> and <variation/>.
  5. Save the file in the external editor.
  6. Go back to Xcode. Let it re-calculate all the constraints.
  7. Accept the warning for the UI element that pops up again.
  8. If you go back to the external editor, you'll notice that the <variation/> element is gone.

In my example, I had to update x="97" to x="597".

I'm still working on elements that don't have a <variation/>. I'll update this answer as soon as I figure it out.