WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

How to delete Core Data objects from SwiftUI views

Paul Hudson    @twostraws   

Updated for Xcode 14.2

Deleting Core Data objects in SwiftUI is mostly the same as deleting them in UIKit, although there are a couple of special hoops to jump through to integrate with SwiftUI’s views.

If you followed my Core Data and SwiftUI set up instructions, you’ve already injected your managed object context into the SwiftUI environment.

Once you have your managed object context, make it available to your SwiftUI view as a property like this one:

@Environment(\.managedObjectContext) var managedObjectContext

Next, create a fetch request that reads some data from your managed object context. In my example setup there’s a ProgrammingLanguage entity, so we can read out all items like this:

@FetchRequest(
    sortDescriptors: [
        SortDescriptor(\.name)
    ]
) var languages: FetchedResults<ProgrammingLanguage>

Third, add an onDelete modifier to your SwiftUI view, wherever you’re showing your data. For example, using the above fetch request you might create a list using ForEach, like this:

List {
    ForEach(languages) { language in
        Text("Creator: \(language.creator ?? "Anonymous")")
    }
    .onDelete(perform: removeLanguages)
}

Finally, add the removeLanguages() method to your SwiftUI view. This should accept an IndexSet, which is a collection of unique integer indexes that should be deleted:

func removeLanguages(at offsets: IndexSet) {
    for index in offsets {
        let language = languages[index]
        managedObjectContext.delete(language)
    }
}

You might want to save your Core Data context at this point, in which case after the for loop finishes add something like this:

do {
    try managedObjectContext.save()
} catch {
    // handle the Core Data error
}

Or if you’re using my PersistenceController setup code, use this:

PersistenceController.shared.save()

Just adding an onDelete() modifier is enough to get swipe to delete on your table rows, but if you also want an Edit/Done button to toggle editing mode you should add this modifier to whatever is directly inside your NavigationStack:

.toolbar {
    EditButton()
}
Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.

Save 50% on all our books and bundles!

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.2/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.