Skip to main content

Adding swipe to delete and EditButton

About 3 minSwiftSwiftUIArticle(s)bloghackingwithswift.comcrashcourseswiftswiftuixcodeappstore

Adding swipe to delete and EditButton 관련

SwiftUI by Example

Back to Home

Adding swipe to delete and EditButton | SwiftUI by Example

Adding swipe to delete and EditButton

Updated for Xcode 15

Before we're done with this app, let's make a handful of smaller changes that help polish up what we have.

First, what happens if the user looks at their order and decides against one of the items? Right now we can add items but can't delete them, but this isn't too hard to remedy.

Just like UIKit, SwiftUI's List view can be manipulated using IndexSet – a collection of locations in its data. So, we can add a method to OrderView that accepts an IndexSet and uses it to delete those items from our order array:

func deleteItems(at offsets: IndexSet) {
    order.items.remove(atOffsets: offsets)
}

To connect that to SwiftUI, we need to add an onDelete() modifier to the ForEach that shows the menu items in the order. This accepts a closure that will be executed when deletion happens, and that closure must accept an IndexSet and delete those items – basically exactly what our deleteItems(at:) method already does.

Modify the first section in the OrderView form to this:

Section {
    ForEach(order.items) { item in
        HStack {
            Text(item.name)
            Spacer()
            Text("$\(item.price)")
        }
    }
    .onDelete(perform: deleteItems)
}

If the user wants to remove several items at a time, that's also easy to do in SwiftUI. We just added the method to handle deletion, so now we can add an edit button to the navigation bar and let SwiftUI handle the rest. No, really!

Add this after the navigationTitle() modifier in OrderView:

.toolbar {
    EditButton()
}

SwiftUI already knows that an edit button should toggle the table between editing and non-editing mode, while also changing title between Edit and Done – another example of us getting the system default behavior for free.

Let's move on to a second upgrade: why do we let users press the Place Order button if they haven't added anything to their order? This doesn't make sense, and we shouldn't really allow it. So, let's not allow it!

Here's how that part of OrderView looks right now:

Section {
    NavigationLink("Place Order") {
        CheckoutView()
    }
}

What we want is to disable that when there are no items in our order. Well, thanks to the power of SwiftUI we can do exactly that with the disabled() modifier, like this:

Section {
    NavigationLink("Place Order") {
        CheckoutView()
    }
}
.disabled(order.items.isEmpty)

If you run the app now you'll find that you can add an item, go to the order screen, and delete that item, and Place Order will automatically become disabled as your cart becomes empty.

Much better!

Similar solutions…
How to enable editing on a list using EditButton | SwiftUI by Example

How to enable editing on a list using EditButton
All SwiftUI property wrappers explained and compared | SwiftUI by Example

All SwiftUI property wrappers explained and compared
SwiftUI tips and tricks | SwiftUI by Example

SwiftUI tips and tricks
How to let users delete rows from a list | SwiftUI by Example

How to let users delete rows from a list
How to delete Core Data objects from SwiftUI views | SwiftUI by Example

How to delete Core Data objects from SwiftUI views

이찬희 (MarkiiimarK)
Never Stop Learning.