Mercurial > public > geoquiz
view GeoQuiz/Logic/CoreDataController.swift @ 23:02dcebb8cc4a
fix layout issues
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Thu, 27 Oct 2022 09:17:13 +0200 |
parents | f140bb277c96 |
children |
line wrap: on
line source
// // CoreDataController.swift // GeoQuiz // // Created by Dennis Concepción Martín on 22/10/22. // import Foundation import SwiftUI import CoreData class CoreDataController { static func deleteGame(at offsets: IndexSet, from games: FetchedResults<PlayedGame>, with moc: NSManagedObjectContext) { for offset in offsets { let game = games[offset] moc.delete(game) } try? moc.save() } }