I run into a problem with Xcode8
and automatic CoreData
NSMangedObject
creation.
The toolversion is already downgraded to Xcode7.3
and the entities are in codegen mode manual/none.
I added a new attribute to an entity and created the NSManagedObject
subclass over the Editor->Create NSManagedObject Subclass.
XCode now generates the Entity+CoreDataClass.h/m and the Entity+CoreDataProperties.h/m Files.
Does this mean that I have to change any #import (no Problem by search and replace) or is there an other way to get the old Entity.h and Entity.m Files?
What about my existing code in the Entity.m files, do I have to copy & paste it to the new Entity+CoreDataClass.m file?
In my opinion the code generation is buggy. If there is a relation to other classes the import in the Entity+CoreDataClass.m file is wrong. The class imports the old Entity.h files...
Perhaps anyone has an idea. If there isn't any other possibility this could only be a joke by Apple....