Can CoreData models be exported for use in another application?

Is there a way to export a CoreData model file (for example, entity description: * .xcdatamodeld) to another project. Since re-creating all objects is boring :-)

+3
source share
1 answer

Yes, just add / copy the model file itself to the new project in the same way as any other type of file. You can even add / copy the existing store if the applications use the same source data. I do it all the time

+2
source

Source: https://habr.com/ru/post/1755542/


All Articles