I am trying to make the transition from one ViewController to another ViewControllerTable. I register the transition in ViewController.m in working out of clicking the "Enter" button (because I only need the transition if the condition is met)
ViewControllerTable *detail = [self.storyboard instantiateViewControllerWithIdentifier:@"ViewControllerTable"]; [self.navigationController pushViewController:detail animated:YES]; The code does not swear, the transition does not work, Why? I suspect that this is due to the Navigation Controller

