In iOS 13 when i call to other StoryBoard, when charge the ViewController appear a black screen on my view.
I use this code for call a new StoryBoard:
UIStoryboard *homeSB = [UIStoryboard storyboardWithName:SBNameHome bundle:nil];
UIViewController *homeVC = [homeSB instantiateInitialViewController];
homeVC.modalPresentationStyle = UIModalPresentationFullScreen;
homeVC.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:homeVC animated:YES completion:nil];
This project use multiple StoryBoards, and when i call a new StoryBoard fail. If i build a new ViewController with Xib, don't appear the black screen, but the project was built with multiple StoryBoard instead of Xib. I think that this is caused by the new SceneDelegate in iOS 13.
Any idea? Thanks.