From the course: iOS Development: Siri Shortcuts

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Implementing confirm order interface

Implementing confirm order interface - iOS Tutorial

From the course: iOS Development: Siri Shortcuts

Start my 1-month free trial

Implementing confirm order interface

- [Man] Our invoice view is responsible for displaying invoice to the user. But what about the confirmation view? We can add a separate view that will display the confirmation of the user's order. I have already created a small confirmation view, so I can add it to this project. But once again, creating your own confirmation view with custom UI, you can do anything you want. You can see that our confirmation view is pretty simple. It only consists of one image view, and that's it. Let's go ahead and create the associated class for the confirmation view. Going to add a new Swift File, and we will simply call it ConfirmView. The confirmation view will consist of simply one particular image view. First of all we will import UIKit, and we will create a class called ConfirmView, which will inherit from UIView. Next, we are going to go ahead and create an IBOutlet, which will be be weak var coffeeImageView, which is of type…

Contents