Skip to content

Instantly share code, notes, and snippets.

View TD3P's full-sized avatar

TED TD3P

View GitHub Profile
@TD3P
TD3P / AppDelegate.swift
Last active February 16, 2019 10:26
やっとわかったSwift/CoreData入門 【part2:とりあえず実装編】 ref: https://qiita.com/TD3P/items/adbbeee827995cffd509
//NSPersistentContainer内のNSManagedObjectContextを定数contextに代入
let context = persistentContainer.viewContext
//NSManagedObjectContextに変更があったら、保存しますよ
if context.hasChanges {
do {
//NSManagedObjectContextの内容を保存するよ
try context.save()
} catch {
//なんかエラーがあったらエラーを吐くよ