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
.xcdatamodeldfile package.Declaration
Swift
case bundle = "momd" -
The extension for a versioned model file, or a
.xcdatamodelfile.Declaration
Swift
case versionedFile = "mom" -
The extension for a mapping model file, or a
.xcmappingmodelfile.Declaration
Swift
case mapping = "cdm" -
The extension for a sqlite store.
Declaration
Swift
case sqlite = "sqlite"
View on GitHub
ModelFileExtension Enumeration Reference