Is it the generated files from the data model that matters more or is the actual xcdatamodel file?
And is it possible to change the ownership property from 'retain' to 'copy' for the files that are autogenerated from the xcdatamodel class?
Is it the generated files from the data model that matters more or is the actual xcdatamodel file?
And is it possible to change the ownership property from 'retain' to 'copy' for the files that are autogenerated from the xcdatamodel class?
The xcdatamodel file is what CoreData will use to manage objects.
The generated objects act as handy containers that support the KVO stuff CD needs to keep track of changes. I don't think it would care if you mark properties as copy instead of retain...