iOS ModalViewとして表示したViewControllerにNavigationControllerを追加する方法
ViewControllerの画面遷移時に下記コードで、NavigationControllerを追加した所NavigationControllerの灰色のNavigationBarと真っ白なViewのみが表示されてしまいTestVCのViewが表示されない状況です。
- (IBAction)buttonTapped:(id)sender {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
TestVC *VC = [storyboard instantiateViewControllerWithIdentifier:@"TestVC"];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:VC];
[self presentViewController:navigationController animated:YES completion:nil];
}
ネットで確認した所、上記方法が紹介されていたのですがうまくいきません。
対応策ご存知の方いましたらご教授お願いします。