在热点模式下启动屏幕不会填满屏幕设备

Launch screen doesn't fill the screen device on hotspot mode

如果我在我的 iPhone 上激活热点,启动屏幕会向上移动,在屏幕底部我有一个填充 space,我可以在其中看到我的 phone。我在导航控制器上遇到了同样的问题,但我修复了它。在这里我不知道我能做什么。

如果有人可以帮助我.. 请

我找到了这个问题的解决方案。在 AppDelegate.m 我添加了这个方法:

- (void)application:(UIApplication *)application willChangeStatusBarFrame:(CGRect)newStatusBarFrame {
[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
}

启动屏幕看起来很完美。