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

Project 16 : Bookworm, something missing in code!

Forums > macOS

On this part of code something is missing

func deleteSelected() {
        guard let selectedReview = dataController.selectedReview else { return }
        guard let selectedIndex = reviews.firstIndex(of: selectedReview) else { return }
        managedObjectContext.delete(selectedReview)
        dataController.save()

        if selectedIndex < reviews.count {
            dataController.selectedReview = reviews [selectedIndex]
        } else {
            let previousIndex = selectedIndex - 1
            if previousIndex >= 0 {
                dataController.selectedReview = reviews[previousIndex]
            } else {
                dataController.selectedReview = nil // This line is missing in th book
            }
        }
}

In my point of view you have to set selectedReview to nil to display Text("Please select a review") in ContentView. You can check my personnal project and tell me your point of view.

https://github.com/Sebastien-Remy/hackingWithmacOS-16-Bookworm

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!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

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.