I'm making a purely Swift project, and when I create an entity in model file, then use Editor->Create NSManagedObject Subclass to create class file for the entity, in the model, the Class property for entity becomes PRODUCT_MODULE_NAME.entityName, this will cause core data to fail loading NSManagedObject subclass instance.
I know how to get pass by this by using @objc() and rename the class property in model file, but is there any better idea?
${PRODUCT_MODULE_NAME}.entityNameand should be expanded automatically. Does that work? - Martin R