菜鸟教程小白 发表于 2022-12-12 16:15:43

ios - 在 iOS 中使用 Core Data 提供初始数据


                                            <p><p>这就是我需要的:使用我在 iPhone 模拟器上创建的示例实体填充一个 sqlite 文件,然后在应用程序最初为我的所有用户运行时复制该文件。</p>

<p>我做了什么:</p>

<ol>
<li><p>我在模拟器中创建了一堆条目。</p></li>
<li><p>我在 MAC 上的 iPhone Simulator iOS 文件夹中找到了附加到我的应用程序的 sqlite 文件。</p></li>
<li><p>从 .sqlite、.sqlite-shm、.sqlite-wal 这三个文件中,我只是将 .sqlite 文件复制到了我的 xCode 项目中。</p></li>
<li><p>当我运行应用程序时,.sqlite 文件显示为空!</p></li>
</ol>

<p>我该如何解决这个问题?</p>

<p>谢谢!</p>

<p><b>编辑:</b></p>

<p>.sqlite-wal 和 .sqlite-shm 有什么意义? </p>

<p>为什么它们存在,为什么在 iOS7 之前不存在?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><ul>
<li>第一步 R OK,但随后你必须加载数据库</li>
</ul>

<p>你需要这样的东西:</p>

<pre><code>- (void)copyPreparedDatabase{
    __persistentStoreCoordinator = nil;

    NSURL *storeURL = [ URLByAppendingPathComponent:@&#34;DATABASE.sqlite&#34;];
    NSString *storePath = ;

    NSFileManager *fileManager = ;
    NSString *defaultStorePath = [ pathForResource:@&#34;DATABASE&#34; ofType:@&#34;sqlite&#34;];
    if (defaultStorePath) {
      NSError *error = nil;

      if () {
            ;
      }
      ;

      NSDictionary *fileAttributes = ;
      if (![ setAttributes:fileAttributes ofItemAtPath:storePath error:&amp;error]) {

      }
    }
}
</code></pre>

<p>然后你从 - (NSPersistentStoreCoordinator *)persistentStoreCoordinator 调用它
AppDelelate.m</p>

<p>建议:做一些自定义开关,例如
    #define IMPORT_PREPARED_DATABASE</p>

<p>这样做:
    if (! && !IMPORT_PREPARED_DATABASE) {//&& 1==2
      [自复制PreparedDatabase];<br/>
    }</p>

<p>所以你可以控制何时构建新的准备好的数据库或何时使用现有的....</p>

<p>注意:
当你建立新的准备好的数据库sto模拟器时,复制数据库并将其粘贴到旧的......</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中使用 Core Data 提供初始数据,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19862270/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19862270/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中使用 Core Data 提供初始数据