Why the Extension is “momd” but not “xcdatamodel” when search the path for the Model file

前端 未结 1 350
闹比i
闹比i 2020-12-08 02:04

I create a Master-Detail application using Core Data. And there is a simple code to get the path for Model file:

NSURL *modelURL = [[NSBundle mainBundle] U         


        
相关标签:
1条回答
  • 2020-12-08 02:44

    The mom and momd files are compiled versions of xcdatamodel and xcdatamodeld files.

    There information about how the compiling process works here (page 31). To quote from the docs:

    A data model is a deployment resource. In addition to details of the entities and properties in the model, a model you create in Xcode contains information about the diagram—its layout, colors of elements, and so on. This latter information is not needed at runtime. The model file is compiled using the model compiler, momc, to remove the extraneous information and make runtime loading of the resource as efficient as possible.

    0 讨论(0)
提交回复
热议问题