Xcode sets syncable="YES"the default for objects and properties, for example,
$ cat AppName/AppName.xcdatamodeld/AppName.xcdatamodel/contents
...
<entity name="Event" representedClassName="Event" syncable="YES">
<attribute name="timestamp" attributeType="Date" syncable="YES"/>
</entity>
...
Should I install syncableon NO? (I know I can do this by deleting syncable="YES"from a file contentsor adding a key-value pair {com.apple.syncservices.Syncable, NO}in the "User Information" section of the data model inspector.)
source
share