このコードを使用してスプラッシュ スクリーンを表示していますが、表示されるのは黒だけです。
UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard_iPad" bundle:nil];
SplashViewController *splash = [storyBoard instantiateViewControllerWithIdentifier:@"splash"];
splash.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
splash.modalPresentationStyle = UIModalPresentationFullScreen;
[self.window addSubview:splash.view];
ブレーク ポイントが呼び出されているため、スプラッシュ スクリーンのビュー コントローラーが読み込まれていますが、ビュー コントローラーが表示されません。