CoreData を使用しようとしていますが、オブジェクトを保存しようとすると、常に EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) エラーが発生します。このエラーの原因は何ですか? 補足として、最初は CoreData を使用するつもりでプロジェクトを作成しなかったため、CoreData は後でプロジェクトに追加したものでした (これが問題の原因であるかどうかはわかりません)。
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("repliaoutput", withExtension: "momd")!
return NSManagedObjectModel(contentsOfURL: modelURL)! //this line is where the EXC_BAD_INSTRUCTION (code=EXC_I386_INVOP, subcode=0x0) error is
}()