如何使更大尺寸的呈现视图与 iOS 18 中的早期版本相同 - Swift

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

我在 iOS 18 中呈现 UIViewController 时遇到问题。 对于早期版本的演示看起来不错。

我需要每个版本都有相同的高度和宽度。

任何快速解决方案都将受到赞赏。谢谢!

GITHUB 上的示例代码

@IBAction func didTap(_ sender: UIButton) {
    if let sVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "SecondVC") as? SecondVC {
        self.present(sVC, animated: true)
    }
}

enter image description here

swift uiviewcontroller uimodalpresentationstyle uiviewcontrollerrepresentable ios18
1个回答
0
投票

问题是您在故事板中将演示文稿样式设置为自动。将其设置为页表。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.