我正在深入开发iPhone,所以如果这是一个荒谬的问题我提前道歉,但在使用Core Data框架的新iPad应用程序项目中,这里是用于创建persistentStoreCoordinator的生成代码......
- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
if (persistentStoreCoordinator != nil) {
return persistentStoreCoordinator;
}
NSURL *storeUrl = [NSURL fileURLWithPath: [[self applicationDocumentsDirectory] stringByAppendingPathComponent: @"ApplicationName.sqlite"]];
NSError *error = nil;
persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeUrl options:nil error:&error]) {
/*
Replace this implementation with code to handle the error appropriately.
abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. If it is not possible to recover from the error, display an alert panel that instructs the user to quit the application by pressing the Home button.
Typical reasons for an error here include:
* The persistent store is not accessible
* The schema for the persistent store is incompatible with current managed object model
Check the error message to determine what the actual problem was.
*/
NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
abort();
}
return persistentStoreCoordinator;
}
我的问题是......
非常感谢您的帮助!我现在要继续研究这些问题。
答案 0 :(得分:4)
是的,如果不存在ApplicationName.sqlite
数据库,则会创建该数据库。它将位于应用程序的Documents
目录中(假设您的-applicationDocumentsDirectory
方法返回的内容)。
如果您在模拟器中运行此功能,通常可以在~/Library/Application Support/iPhone Simulator
中找到应用程序数据。在3.2+ SDK上,不同的OS版本用于对使用特定SDK构建的应用程序进行分组,因此您需要进入相应的版本目录,然后Applications
,然后找到应用程序的数字编码目录(几乎通过反复试验)。将在那里找到Documents
目录和sqlite数据库。
如果在设备上运行,您可以转到管理器,选择您的设备(连接到系统时),然后转到摘要选项卡中的应用程序分组。单击应用程序名称旁边的显示箭头,您可以将应用程序数据从那里拖出到一个目录中,将所有应用程序的工作数据从设备上的应用程序中提取出来。
答案 1 :(得分:3)
商店由
创建addPersistentStoreWithType:configuration:URL:options:error:
方法。使用
NSLog(@"store path: %@", storeUrl);
在applicationDocumentsDirectory
。
要下载并浏览设备的整个applicationDocumentsDirectory
,请使用Xcode Organizer:选择您的设备,点击应用程序的显示三角形,然后点击应用程序包右侧的箭头