私のアプリは を使用して設計されておりUITabBarController
、アプリのデリゲートからその上にビュー (ログイン画面) を表示しようとしています。次のコードを使用する場合:
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
tabBarController = [[UITabBarController alloc] initWithNibName:@"Main_TabBarController" bundle:nil];
self.window.rootViewController = tabBarController;
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPhone" bundle:nil];
Login_ViewController *lvc = [storyboard instantiateViewControllerWithIdentifier:@"Login_ViewController"];
[self.window.rootViewController presentViewController:lvc animated:YES completion:nil];
エラーが発生Warning: Attempt to present <Login_ViewController: 0x716fac0> on <UITabBarController: 0x7165240> whose view is not in the window hierarchy!
し、画面が真っ黒になります。Login_ViewController
ウィンドウ階層に追加するにはどうすればよいですか?