I've looked through numerous answers and tried everything (it seems), but I still cannot get my unwind to work.
I have as a storyboard sequence:
Nav Controller -> Main Interface Controller -> Nav Controller -> City Selection Table View Controller.
I've added a bar button to function as a back button in my City Selection Table View Controller to go back to the Main Interface, and linked it to the exit, but it still is not working.
My CitySelectionTableViewController.m file
#import "CitySelectionTableViewController.h"
@interface CitySelectionTableViewController ()
@end
@implementation CitySelectionTableViewController
- (IBAction)unwindToMainInterfaceViewController:(UIStoryboardSegue *)segue
{
}
...
My storyboard is showing the "Unwind segue from Back to Exit" segue in the document outline, but nothing is happening. I can reach the city selection view, but "Back" will not bring me back. Any suggestions? I do realize this is a fairly common question, but I've tried many answers from StackOverflow and others with no success.