I've had this problem ever since upgrading to xcode 4. In the core data model editor, I can't see my diagram view. Everything else seems to work, but mostly the graphic view is just blank. If I click around on entities in the list, I get a screen that looks like this: http://imgur.com/zE1Ci
feedback
|
|
I hit this problem, here is how I fixed it:
Note: No guarantees you won't lose any work product. This solution allowed me to return to a working graphical state at the point just before the graphical problem began and I didn't lose any work. | |||||||
feedback
|
|
I`m using Xcode 4.2.1 and I have found the same problem. I had to open the file "contents" on vi and edit the positions at the end of the file. Maybe because some bug, there was big negative values. Once the file was edited, everything was put into place again. | |||
|
feedback
|
|
In XCode 4.2.1, the file you need to edit is the "contents" one people have mentioned in other answers. I also noticed really strange negative values in my contents file, but changing to positive values didn't fix anything, and then clamping them to smaller values didn't help either. Eventually I quit Xcode, backed up my model file, and then just deleted all the entries in the section at the end of the contents file. I then launched XCode and added and deleted an Entity. It worked for a minute, but reverted to the strange state after I moved a few entities around. What finally fixed it for me was deleting an Entity I had just created before the problems started. It was a child of another entity, and I think I had created a loop of some sort that was confusing the parser. I had a different entity altogether with relationships to both the parent and child entities. Deleting the child entity finally fixed things right up and I just had to lay out the existing entities again in the editor. | |||
|
feedback
|
|
I did something similar to Chris:
| |||
|
feedback
|
|
For me, with Xcode 4,3,2, the issue is even if I fix the location of entities on the graphical view of the model, if I switch to edit a text file and then go back to the model, it has already lost the location of many, but not all entities. What helped, is to make sure to manually save the file before I edit anything else. Otherwise the changes were not persisted. Unnerving that apple's tooling can be so unreliable. | |||
|
feedback
|