在将模型文件从一个项目移动到另一个项目时,我经常遇到崩溃。知道为什么吗?如果我从 Xcode 创建它,并手动创建实体,它不会发生。为什么?
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("Model", withExtension: "momd")!
return NSManagedObjectModel(contentsOfURL: modelURL)!
}()
更新
文件扩展名不是momd ,而是xcdatamodel 。但这应该不是问题。 Model 和同名的先前项目正在运行。
文件被添加到目标:
在控制台中,您可以看到它存在于正确的位置:
Best Answer-推荐答案 strong>
我找到了 this但它不起作用。顺便说一句,编译有问题。我删除了模型文件,添加了一个以前命名但现在来自 Xcode 的新空模型。然后手动编辑模型文件,并插入相关的xml标签。
关于ios - 加载模型文件时崩溃。模型是从其他项目复制的,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/27987906/
|