新XCode更新后混乱的故事板

问题描述 投票:0回答:1

我刚刚更新到xcode的最新版本,因为我无法在运行IOS 13.3的iphone上构建项目。更新xcode之后,我的情节提要现在看起来像这样(附有图片)。 enter image description here

此视图不是很糟糕,但它不在设备框架之内,我打算如何。

这是现在意味着我必须重新设计故事板吗?还是新的更新的一部分,视图的排列方式有所不同?非常感谢您的帮助!

ios swift xcode uistoryboard
1个回答
0
投票

如果您要展示ViewController,请使用modalPresentationStyle = .fullScreen

let storyboard =  UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "loginVC")
vc.modalPresentationStyle = .fullScreen
self.present(vc, animated: true, completion: {})
© www.soinside.com 2019 - 2024. All rights reserved.