I click on the XIB via the project navigator. It opens up and immediately changes the icon to gray showing I have unsaved changes. If I save changes, click on a different file and click back to re-open it, more changes. Always modifies on open.

It happens with one XIB file in this project and a couple in another project. I'd love to know why it's happening and what I can do to fix it now and prevent it in the future.

Note: using Xcode 3.2 Build 4C199 with Snow Leopard

Edit: I've added a couple sections which got removed from the XML on one of these open/modifications

        <key>outlets</key>
        <dict>
            <key>addEventTabBarController</key>
            <string>UITabBarController</string>
            <key>window</key>
            <string>UIWindow</string>
        </dict>
        <key>superclass</key>
        <string>NSObject</string>

and

        <key>outlets</key>
        <dict>
            <key>courseTableCell</key>
            <string>UITableViewCell</string>
        </dict>
        <key>superclass</key>
        <string>UITableViewController</string>
link|improve this question

62% accept rate
I've got one that gets modified if you have it open and then move away from it. – morningstar Nov 4 '11 at 5:00
feedback

2 Answers

I don't know the exact answer, but I do know these things will help you find it:

XCode 4 is notorious for screwing things up. If you put your directory into a Versioning system, (Git), then grab GitBox and save your project to give it a state and create a git repo out of it. The git repo will save the state. Gitbox will visually show you the changes.

After opening it, you'll be able to right-click on that file in GitBox and hit "see difference" or "view changes" or whatnot.

You will be auto-scrolled to the lines. If you can relate the XML to the Xib, you can figure out what changes.

I went from Lion to Snow Leopard, so I don't deal with this anymore.

link|improve this answer
I am using revision control have have taken a look at the changes. Sometimes I swear it's just moving XML around the file. Other times it makes actual changes which look like they would affect my various components... but have 0 noticeable impact when I run my code. I wouldn't be surprised if it just keeps flipping between 4 different "changes" – DBD Nov 4 '11 at 16:41
You say going from Lion back to SL fixes this anomaly? Is it the Xcode version that is making the differences or the OS? Is Lion's versioning possibly kicking in? – Chris Wagner Dec 15 '11 at 7:06
I never switched to Lion, I've been using Snow Leopard the whole time and obviously I have this problem. :) – DBD Dec 16 '11 at 3:25
feedback

basic Idea...

XCode stores lots of version numbers of all different sorts of things. If you look at the XML representation of the XIB, you should find that the vast majority of these little changes are in these version numbers.

How it happens...

Whenever you do an update of Xcode, many different things within Xcode (and often inside the SDK) get updated. If you make a change to a XIB file, those version changes get stood in the XIB. So, if you happen to open a XIB file, the version changes get put into that file. As soon as you build or run the app, those changed get saved to the file.

But I haven't update Xcode in a while!

Well, whenever you did your last update, the XIB files will be updated with the new version numbers as you open them, one-by-one over time.

link|improve this answer
While I have no doubt it's possible for XCode to re-structure and modify files between versions, that isn't what's going on here. I can open/modify and save the changes 50 times over 5 minutes if I just keep opening the file and saving the changes. I've also taken a look at the modifications and they seem centered around outlets and other sections which would seem like it could cause the file to break... but it still works so it shows how little I know on how the xml inside XIB file works. – DBD Dec 14 '11 at 2:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.