sqlite file in Core Data project?
I've been looking at some projects about Core Data, and i can never find the sqlite file inside the project.
NSURL *storeURL = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"Shutterbug.sqlite"]];
Shutterbug.sqlit开发者_JAVA技巧e is not in my folder. Any idea?
The SQLite file is not part of your project, it is created at run-time on the device or in the simulator.
You are never supposed to muck about inside this file, it's internals are concidered private and subject to change.
精彩评论