TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

iDine project (SwiftUI by Example) - remove() method in Order class appears unused

Forums > Articles

I'm going through SwiftIUbE a second time given the December '22 updates, and I noticed that the remove() function never gets called:

class Order: ObservableObject {
    @Published var items = [MenuItem]()

...

    func remove(item: MenuItem) {
        if let index = items.firstIndex(of: item) {
            items.remove(at: index)
        }
    }
}

Instead, a deleteItems() method is applied in OrderView.

Is remove() (which uses remove(at:)) just a remnant from an earlier time, before remove(atOffsets:) was introduced (iOS 13)?

3      

Hi @DashingDave! This is not the same.

remove(at:) was introduced prior. This is a method you can apply on Arrays.

remove(atOffsets:) Removes all the elements at the specified offsets from the collection.

3      

Hacking with Swift is sponsored by Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn More

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.