应用程序委托的Swift Xcode 7错误

时间:2015-12-02 19:06:01

标签: ios xcode swift core-data

我试图制作应用程序,将我的模型颜料转换为其他模型颜料。现在,我正在努力在我的油漆中列出核心数据,但我不断收到错误。错误是

  

致命错误:在解包可选值时意外发现nil

在代码上

let Delegate = UIApplication.sharedApplication().delegate as? AppDelegate
let managedContext = Delegate!.managedObjectContext
let entity = NSEntityDescription.entityForName("Person", inManagedObjectContext: managedContext)

let Color1 = NSManagedObject(entity: entity!, insertIntoManagedObjectContext: managedContext)

我不知道问题是什么,我唯一知道的是它在第一行。问题在于展开Delegate。所以这意味着创建委托就是它出错了。 有人知道这个问题吗? 感谢您查看我的问题,即使您没有回答。

1 个答案:

答案 0 :(得分:0)

答案是在试验和错误之后的问题的评论中,最终我还需要删除应用程序,但现在我的工作。