Re: CoreData in Objective-C in Xcode 11
On May 12, 2020, at 5:56 PM, Alex Zavatone via groups.io <zav@...> wrote:
The language used for creating NSManagedObject (not MOC) subclasses is set in the data model’s file inspector. It defaults to Swift. Core Data data models also support automatic code generation, which is enabled by default, so if you don’t want classes generated automatically for certain entities you need to specify that in their inspector. You can also specify that just a class extension be generated for a particular entity, so you still own the overall class definition and just the attribute & relationship accessors will be handled for you. -- Chris |
|