を使用して、最初のView ControllerのUIWindowに2番目のView Controllerのビューを追加する必要がありますaddChildViewController
。しかし、それをしようとすると問題が発生します。私の質問は、UIWindow に別のビュー コントローラーのビューを追加することは可能ですか?
secondVC = (self.storyboard?.instantiateViewController(withIdentifier: "secondVC"))!
self.addChildViewController(secondVC)
self.didMove(toParentViewController: self)
draw.view.frame = CGRect(x:0, y:0, 320, 568)
let window = UIApplication.shared.keyWindow
window?.addSubview(secondVC.view)