gpt4 book ai didi

ios - Present Modal 显示黑屏

转载 作者:可可西里 更新时间:2023-11-01 01:02:21 26 4
gpt4 key购买 nike

我正在尝试展示一个模态框。当我将它连接到一个按钮时,它显示没有问题。 enter image description here enter image description here .但是当我以编程方式调用它时,它显示黑屏。

我是这样调用它的。

override func viewDidAppear(animated: Bool) {
presentViewController(ModalViewControllerClass(), animated: true, completion: nil)
}

我正在使用 swift 2.0。

最佳答案

您可能想尝试另一种方式来以编程方式呈现您的目标 ViewController。试试这个代码:

let sB: UIStoryboard = UIStoryboard(name: "Main", bundle: nil) //name of your storyboard
let newVC: UIViewController = sB.instantiateViewControllerWithIdentifier("<YourVC'sRestorationID>") //if you have the restoration ID, otherwise use 'ModalViewController'
newVC.modalTransitionStyle = .CrossDissolve //if you want it to have a special transition style
self.presentViewController(newVC, animated: true, completion: nil)

希望这有帮助:)

关于ios - Present Modal 显示黑屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34298518/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com