Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在我的 iPhone 上激活热点,启动屏幕会向上移动,在屏幕底部我有一个填充空间,我可以在其中看到我的手机壁纸。我在导航控制器上遇到了同样的问题,但我修复了它。在这里我不知道我能做什么。
如果有人可以帮助我..请
我找到了这个问题的解决方案。在 AppDelegate.m 我添加了这个方法:
- (void)application:(UIApplication *)application willChangeStatusBarFrame:(CGRect)newStatusBarFrame { [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone]; }
启动屏幕看起来很完美。