Sending Data Between UIViewControllers

Previously, I’ve been in the position where I need to send a variable to a modal view controller that I’m about to present. Here is my presenting code in my MainViewController:

So I want to send the variable ‘variableName’ to my modal view controller. In order to do this, I first need to allow [...]