How to set default value for basic data attribute in xcode 4.0?

I switched from xcode 3.2 to xcode 4.0. In xcode 3.2, a default value was previously set along with the attribute name and type. I can not find it in xcode 4.0

+6
source share
2 answers

Open the Utilities panel (CMD + ALT + 0) (to the right of Xcode), then click on the third option (Show Data Model Inspector). You will find there everything you need there. You must select the attribute for which you want to set a default value.

+20
source

The settings for your CoreData attributes are now in the Data Model Inspector window in the utility (View> Utilities> Show Data Model Inspector).

0
source

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


All Articles