App Delegate から表示される ModalViewController があります。ModalViewController は問題なく起動し、[self disconnectModalViewControllerAnimated:YES]; などのさまざまなアクションを実行します。予想通り。
却下は機能しますが、ModalViewController を取得して次のビューに移動/スライドさせることができません。コードでエラーや警告が表示されません。
-(IBAction)signUpButtonTapped {
// i need to get the control for main navigation controller
HHHTabAppDelegate *appDelegate = (HHHTabAppDelegate *)[[UIApplication sharedApplication]delegate];
[appDelegate.navigationController popToRootViewControllerAnimated:NO];
// create object from app main view to push it
SignUpViewController *signUpViewController = [[SignUpViewController alloc] initWithNibName:@"SignUpViewController" bundle:nil];
[appDelegate.navigationController pushViewController:signUpViewController animated:YES];
}