How to set up UIAlert to display a lot of information?

Viewed 457

I want to set up a UIAlert as a "check" for a user. The user will be going to save a set of information, but I would like to give the user a chance to review the information after hitting the "save" button. Essentially, they hit "save", and then I want a UIAlert to appear showing the information they are saving asking "Are you sure all of this information is correct:" and then display all of the info :

@IBAction func saveButtonTapped(_ sender: UIBarButtonItem) {
        //create alert (I know how to do this) that shows all info (I don't know how to do this)
        //If user is ok with the info, perform a segue, if not return to page
}

The issue is that I know UIAlerts can have components like "title" and "message" but I would like the alert to display a lot of information in a list like fashion. Is there anyway to do this? Or do I need to not use an alert and, instead, maybe bring it to a different, confirmation page or maybe a different UI element?

2 Answers
Related