I have a navigation controller that has a segue links between them called \"addSegue\". When I click on the tableView cell though the app crashes and I get the
I had this same problem and actually my problem was that I was calling
WRONG: [self.navigationController performSegueWithIdentifier:@"ShowVerify" sender:self];
instead of
CORRECT: [self performSegueWithIdentifier:@"ShowVerify" sender:self];
so check that you are calling correct performSegueWithIdentifier method :)