UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

Project 10 Challenge 1. Use an actionSheet and put all the alerts in that!

Forums > 100 Days of Swift

Here closures are very useful try this in your code if you are stuck on the first challenge, this is the code only for the delete option

Declare a constant which will hold the main alert which is represent the actionSheet basically like "let actionSheet = UIAlertController(title: "Options".capitalized, message: nil, preferredStyle: .actionSheet)" make sure u are still in didSeletitemAt method and after start adding those buttons to the actionSheet you just declared above "actionSheet.addAction(renameOption)" something like this. I got stuck on this as well and gathered some info from here and there and put it together. Another version of this would be to wrap all this alert into a maine alert, which works fine as well.

    // this is the delete option
    let deleteAction = UIAlertAction(title: "Delete", style: .destructive) { _ in

        let deleteAlert = UIAlertController(title: "Delete", message: "Do you want to delete this person?", preferredStyle: .alert)
        deleteAlert.addAction(UIAlertAction(title: "Cancel", style: .cancel))
        deleteAlert.addAction(UIAlertAction(title: "Delete", style: .destructive, handler: { _ in
            self.people.remove(at: indexPath.item)
            self.collectionView.reloadData()

        }))

        self.present(deleteAlert, animated: true)

3      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.