Xcode sets syncable="YES"
by default for entities & properties, e.g.,
$ cat AppName/AppName.xcdatamodeld/AppName.xcdatamodel/contents
...
<entity name="Event" representedClassName="Event" syncable="YES">
<attribute name="timestamp" attributeType="Date" syncable="YES"/>
</entity>
...
Should I set syncable
to NO
? (I know I can do so by deleting syncable="YES"
from the contents
file or by adding the key-value pair {com.apple.syncservices.Syncable, NO}
under the User Info section of the Data Model inspector.)