ios - 核心数据在启动之间不持久
<p><p>我在使用 Core Data 时遇到了一个奇怪的问题。在一个特定的 ViewController 中,我从 Core Data 中的对象加载 View 。当我运行该应用程序时,它第一次加载此 View 时,Core Data 不会从我的获取中返回任何内容。所以我重新填充核心数据,每次显示 View 时,它都会正确地从核心数据中获取对象。但是,每次启动应用程序时,它都不会在 Core Data 中找到任何内容,然后必须再次从头开始创建对象。</p>
<p>那么,什么会导致 Core Data 对象在应用程序运行时持续存在,但在启动之间不存在呢?我没有做任何事情来删除任何对象。</p>
<p>编辑:有没有办法查看 Core Data 中的实际内容?像文件或我可以查看的东西?这样会更容易调试。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>确保在更改后保存上下文。
模板方法是:</p>
<pre><code>- (void)saveContext {
NSError *error = nil;
NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
if (managedObjectContext != nil) {
if ( && !) {
// 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, );
abort();
}
}
}
</code></pre>
<p>如果你想打开你的数据库,你可以试试这个名为 <a href="https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/" rel="noreferrer noopener nofollow">SQLite Manager</a> 的 firefox 插件。 </p>
<p>然后搜索您的 .sqlite 文件,您的应用的默认路径是:</p>
<blockquote>
<p>/Users/YOUR_USER/Library/Application Support/iPhone
Simulator/IOS_VERSION/Applications/GENERATED_HASH/Documents/YOUR_APP.sqlite</p>
</blockquote></p>
<p style="font-size: 20px;">关于ios - 核心数据在启动之间不持久,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16720022/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16720022/
</a>
</p>
页:
[1]