这就是我需要的:使用我在iPhone模拟器上制作的示例实体填充sqlite文件,然后在应用程序最初为所有用户运行时复制该文件。
我做了什么:
我在模拟器中创建了一堆条目。
我在MAC上的iPhone模拟器iOS文件夹中找到了附加到我的应用程序的sqlite文件。
从三个文件,.sqlite,.sqlite-shm,.sqlite-wal我只是将.sqlite文件复制到我的xCode项目。
当我运行该应用时,.sqlite文件显示为空!
我该如何解决这个问题?
谢谢!
修改
.sqlite-wal和.sqlite-shm有什么意义?
为什么它们存在以及为什么在iOS7之前不存在?
答案 0 :(得分:1)
- (void)copyPreparedDatabase{
__persistentStoreCoordinator = nil;
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"DATABASE.sqlite"];
NSString *storePath = [storeURL path];
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *defaultStorePath = [[NSBundle mainBundle] pathForResource:@"DATABASE" ofType:@"sqlite"];
if (defaultStorePath) {
NSError *error = nil;
if ([fileManager fileExistsAtPath:storePath]) {
[fileManager removeItemAtPath:storePath error:&error];
}
[fileManager copyItemAtPath:defaultStorePath toPath:storePath error:&error];
NSDictionary *fileAttributes = [NSDictionary dictionaryWithObject:NSFileProtectionComplete forKey:NSFileProtectionKey];
if (![[NSFileManager defaultManager] setAttributes:fileAttributes ofItemAtPath:storePath error:&error]) {
}
}
}
然后你从 - (NSPersistentStoreCoordinator *)persistentStoreCoordinator调用它 AppDelelate.m
建议:做一些自定义开关 #define IMPORT_PREPARED_DATABASE
这样做:
if(![fileManager fileExistsAtPath:storePath]&&!IMPORT_PREPARED_DATABASE){//&& 1 == 2
[self copyPreparedDatabase];
}
所以你可以控制何时建立新的准备好的数据库或什么时候使用现有的数据库......
注意: 当U构建新的准备好的数据库sto模拟器时,复制数据库并将其粘贴到旧数据库...
答案 1 :(得分:0)
This tutorial可以提供很大的帮助。
你做了几乎所有事情,但你错过了一个重要的步骤。您需要将sqlite复制到您的xcode项目,然后您需要签入persistentStoreCoordinator
,如果您的文档区域中存在sqlite文件。如果没有,您需要复制它。在教程中跳转到“医生,你需要在Xcode中”部分:)。