Reputation: 6109
My question : I would like to know the semantic of 2 file extension in core data and what are the content in each of them and when we should use them
1.myFileName.momd ( or myFileName.mom )
2.myFileName.sqlite
I am a beginner for core data programming. Please advice me on this issue. All comments are welcomed here Thanks
Upvotes: 0
Views: 658
Reputation: 125708
The extension .mom
or .momd
is an Apple model file.
The extension .sqlite
indicates an SQLite database.
Use either of them when your file is the appropriate type for that extension. (IOW, use the .mom
extension when your file is an Apple model file.)
Upvotes: 1