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?