3

我在使用 Core Data 时遇到了一个奇怪的问题。在一个特定的视图控制器中,我从 Core Data 中的对象加载视图。当我运行该应用程序时,它第一次加载此视图时,Core Data 不会从我的获取中返回任何内容。所以我重新填充核心数据,每次显示视图时,它都会正确地从核心数据中获取对象。但是,每次启动应用程序时,它都不会在 Core Data 中找到任何内容,然后必须再次从头开始创建对象。

那么,什么会导致 Core Data 对象在应用程序运行时持续存在,但在启动之间不存在呢?我没有做任何事情来删除任何对象。

编辑:有没有办法查看核心数据中的实际内容?像文件或我可以查看的东西?这将使调试更容易。

4

2 回答 2

1

确保在更改后保存上下文。模板方法是:

- (void)saveContext {
    NSError *error = nil;
    NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
    if (managedObjectContext != nil) {
        if ([managedObjectContext hasChanges] && ![managedObjectContext save:&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.
            NKLOG(@"Unresolved error %@, %@", error, [error userInfo]);
            abort();
        }
    }
}

如果你想打开你的数据库,你可以试试这个名为SQLite Manager的 firefox 插件

并搜索您的 .sqlite 文件,您的应用程序的默认路径为:

/Users/YOUR_USER/Library/Application Support/iPhone Simulator/IOS_VERSION/Applications/GENERATED_HASH/Documents/YOUR_APP.sqlite

于 2013-05-23T19:18:07.117 回答
0

可以通过查找模拟器放置应用程序的位置来检查应用程序的所有文件。你可以用一个NSLog( @"My database is at: '%@'", theDatabaseURL.path );

由于您在 an 中所做的一切都NSManagedObjectContext保存在内存中,因此它会在应用程序运行时持续存在,但如果未正确设置持久存储或未触发保存操作,则在下次应用程序启动时它会消失。

如果您展示了您打开、初始化和保存数据的代码部分,这可能会有所帮助。

于 2013-05-23T18:15:47.660 回答