Height and Y values ​​changed to .5 in storyboard

I am working on an iOS project in Xcode (7.3) with my colleague. Recently, we noticed a strange thing happening in the storyboard files.

Each time my colleague β€” let him call Eric β€” opens the storyboard file, some values ​​of the y elements and the height of the UI increase by 0.5.

Example

Right in front of Eric:

<rect key="frame" x="0.0" y="0.0" width="527" height="43"/> 

Rect post Entrance to Eric:

 <rect key="frame" x="0.0" y="0.0" width="527" height="43.5"/> 

This is not a biggie, but it causes an unsuccessful diff in git every time we open the storyboard file.

Do you know what we can do to prevent this from happening?

+7
xcode height storyboard frame difference
source share

No one has answered this question yet.

See similar questions:

57
Builder interface unifies storyboards, resizes and repositions in small increments

or similar:

122
Xcode modifies unmodified storyboard and XIB files
3
Xcode 8: Weird Storyboard issue that discards changes every time it is saved
one
Xcode and Git: opening a branch in Xcode always makes changes to the project file

All Articles