菜鸟教程小白 发表于 2022-12-13 04:52:03

ios - 加载模型文件时崩溃。模型是从其他项目复制的


                                            <p><p>在将模型文件从一个项目移动到另一个项目时,我经常遇到崩溃。知道为什么吗?如果我从 Xcode 创建它,并手动创建实体,它不会发生。为什么?</p>

<pre><code>lazy var managedObjectModel: NSManagedObjectModel = {
      // The managed object model for the application. This property is not optional. It is a fatal error for the application not to be able to find and load its model.
let modelURL = NSBundle.mainBundle().URLForResource(&#34;Model&#34;, withExtension: &#34;momd&#34;)!
return NSManagedObjectModel(contentsOfURL: modelURL)!
}()
</code></pre>

<p> <img src="/image/VRPB7.png" alt="enter image description here"/> </p>

<h1>更新</h1>

<p>文件扩展名不是<code>momd</code>,而是<code>xcdatamodel</code>。但这应该不是问题。 <code>Model</code> 和同名的先前项目正在运行。</p>

<p>文件被添加到目标:
<img src="/image/FNg7h.png" alt="enter image description here"/> </p>

<p>在控制台中,您可以看到它存在于正确的位置:
<img src="/image/Swp8N.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我找到了 <a href="https://stackoverflow.com/questions/6750156/nsmanagedobjectmodel-initwithcontentsofurl-returns-nil-eventhough-the-modelurl-i?lq=1" rel="noreferrer noopener nofollow">this</a>但它不起作用。顺便说一句,编译有问题。我删除了模型文件,添加了一个以前命名但现在来自 Xcode 的新空模型。然后手动编辑模型文件,并插入相关的xml标签。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 加载模型文件时崩溃。模型是从其他项目复制的,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27987906/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27987906/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 加载模型文件时崩溃。模型是从其他项目复制的