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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.