In my project I have 3 controllers;
NavigationController
ServiceTableViewController
DateTableViewController
The ServiceTableViewController
is the initial view controller. It has several rows which prompt the user to enter in data, which will be emailed to a particular email address. One of the rows, when tapped, sends the user to the DateTableViewController
which prompts the user to select a date from the UIDatePicker
.
The issue I am facing is getting data back from DateTableViewController
in order to display a label on the ServiceTableViewController
to show the date the user selects in the DateTableViewController
. I know how to get information from one view controller to another, but to go in reverse, so to speak, is not something I know how to do. Any help is appreciated.