NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills today! >>

Presenting an alert

Paul Hudson    @twostraws   

Updated for Xcode 14.2

There’s one more thing to add in order to finish off this screen, which is to make the Confirm Order button work. We’re not actually going to send the order off somewhere, but we are going to show an alert confirming that it all went through successfully.

Like other things in this form this requires us to add another @State property, this time tracking whether the alert is visible or not. And this is where I hope the reactive nature of SwiftUI starts to become clear: we don’t say “show the alert” or “hide the alert” like we would do in UIKit, but instead say “here are the conditions where the alert should be shown” and let SwiftUI figure out when those conditions are met.

So, first let’s create another @State property saying that the payment alert isn’t currently showing:

@State private var showingPaymentAlert = false

Now we’ll attach an alert() modifier to our form, with a simple title, a two-way binding to that property, and some text to show as the alert’s message:

.alert("Order confirmed", isPresented: $showingPaymentAlert) {
    // add buttons here
} message: {
    Text("Your total was \(totalPrice) – thank you!")
}

That uses a two-way binding so that SwiftUI knows to show the alert when showingPaymentAlert becomes true, and will also set showingPaymentAlert back to false when the alert is dismissed.

Where I’ve placed the // add buttons here comment is where to add some custom buttons for your alert if you want them, but as we haven’t added any SwiftUI will automatically add a default “OK” button that dismisses the alert.

Now we can make that alert show whenever we want, just by setting showingPaymentAlert to true. So, change our button to this:

Button("Confirm order") {
    showingPaymentAlert.toggle()
}

Run the program and see what you think – it’s really coming together now!

An iOS alert showing the order was confirmed.

Further reading

Hacking with Swift is sponsored by Stream

SPONSORED Build a functional Twitter clone using APIs and SwiftUI with Stream's 7-part tutorial series. In just four days, learn how to create your own Twitter using Stream Chat, Algolia, 100ms, Mux, and RevenueCat.

Try now!

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

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.6/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.