开发者

sqlite file in Core Data project?

开发者 https://www.devze.com 2023-03-25 15:32 出处:网络
I\'ve been looking at some projects about Core Data, and i can never find the sqlite file inside the 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.

0

精彩评论

暂无评论...
验证码 换一张
取 消