ModelFileExtension
public enum ModelFileExtension : String
Describes a Core Data model file exention type based on the Model File Format and Versions documentation.
-
The extension for a model bundle, or a
.xcdatamodeld
file package.Declaration
Swift
case bundle = "momd"
-
The extension for a versioned model file, or a
.xcdatamodel
file.Declaration
Swift
case versionedFile = "mom"
-
The extension for a mapping model file, or a
.xcmappingmodel
file.Declaration
Swift
case mapping = "cdm"
-
The extension for a sqlite store.
Declaration
Swift
case sqlite = "sqlite"