所以我的CustomViewController有一个nib文件,每次我想展示这个Controller时,我都会执行

    let vc = CustomViewController(nibName: "CustomViewController", bundle: nil)
    self.present(vc, animated: true, completion: nil)

我想要的是让CustomViewController自己从笔尖加载自身。这样父VC中的调用将像这样
    let vc = CustomViewController()
    self.present(vc, animated: true, completion: nil)

最佳答案

在CustomViewController中添加此init方法。它会根据您的需要工作。

convenience init() {
     self.init(nibName: "CustomViewController", bundle: nil)
}

关于ios - 如何使ViewController正确地从viewDidLoad()上的 Nib 加载自身?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45590684/

10-10 20:55