抛出fatalError时Xcode崩溃了

时间:2017-12-14 11:31:11

标签: swift xcode core-data

static func saveContext (context: NSManagedObjectContext = getContext()) {        
    if context.hasChanges {        
        do {
            try context.save()
        } catch let nserror as NSError {      
            fatalError("Unresolved error \(nserror), \(nserror.userInfo)")
        }
    }
}

(我把它扔在保存CoreData上下文中)

当我抛出fatalError时,Xcode本身每次都会崩溃,我必须再次打开它。

也许有人知道如何修复或smth?

0 个答案:

没有答案