我在 iOS 18 中呈现 UIViewController 时遇到问题。 对于早期版本的演示看起来不错。
我需要每个版本都有相同的高度和宽度。
任何快速解决方案都将受到赞赏。谢谢!
@IBAction func didTap(_ sender: UIButton) {
if let sVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "SecondVC") as? SecondVC {
self.present(sVC, animated: true)
}
}