I have a common UIViewController
that all my UIViewsControllers
extend to reuse some common operations.
I want to set up a segue on this \"
For controllers that are in the storyboard.
jhilgert00 is this what you were looking for?
-(IBAction)nav_goHome:(id)sender {
UIViewController *myController = [self.storyboard instantiateViewControllerWithIdentifier:@"HomeController"];
[self.navigationController pushViewController: myController animated:YES];
}
OR...
[self performSegueWithIdentifier:@"loginMainSegue" sender:self];