I have a viewcontroller that features a form, once this has been submitted I need the app to move back to the 'home' page this is done with:
ITViewController *svc =[self.storyboard instantiateViewControllerWithIdentifier:@"home"];
[svc setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
[self presentViewController:svc animated:YES completion:nil];
However once I have done this and try to click on any of the buttons on the 'home' page I end up with the error:
Terminating app due to uncaught exception 'NSGenericException', reason: 'Could not find a navigation controller for segue. Push segues can only be used when the source controller is managed by an instance of UINavigationController.'
My storyboard looks like:
Email View controller is where we go back from from