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.
视图控制器顶部有空白区域。在更新到最新的 Xcode 版本之前 UI 是正确的。更新到最新版本后,我得到了这种行为。一些视图控制器是正确更新的,但不是全部。检查图像以了解我的问题(右侧的视图控制器有一个空白的灰色空间。如果您编译它,您会在模拟器上看到相同的行为(在所有设备上)。当您启动时,它看起来像后台的第二个应用程序该应用程序。我希望有人可以帮助我。谢谢!
你应该在这样呈现时配置你的 ViewController:
yourViewController.modalPresentationStyle = UIModalPresentationFullScreen; [self yourViewController animated:YES completion:NULL];
尝试将父 ViewController 的(编辑 MemberVC,我假设)Top Bar 属性设置为 None。