Xcode 4 Core Data Attribute Parameters

In Xcode 3, project.xcdatamodel had three panels (objects, properties, and details) at the top with a graphic thing to view your data model (diagram view). If I wanted to, for example, make my isOverdue Transient attribute, I would simply go to which of these panels has this parameter (I never did Core Data before Xcode 4) and do it with it. Xcode 4 is a pretty dramatic change from Xcode 3, and I cannot find a button or menu to do the same. The version editor allows you to view the source code, but it is blocked for editing, and I can’t imagine that this is the only option.

Google has nothing to do with any searches I can come up with, and right-clicking around it didn't help.

+4
source share
1 answer

Look at the three buttons in the upper right corner of the toolbar. The rightmost one (which looks like a shaded right panel) shows the Utility panel. Make sure the data model is selected in the project navigator. On the Utility toolbar, select the icon that resembles the database (the rightmost one). There are all the options here.

+16
source

Source: https://habr.com/ru/post/1345891/


All Articles