Après être redirigé d'un autre contrôleur ViewController dans Swift 5, faites la vue complète du contrôleur de vue

let storyBoard: UIStoryboard = UIStoryboard(name: "TestDialog", bundle: nil)
let newViewController = storyBoard.instantiateViewController(withIdentifier: "AlrtDoalogTestViewController") as! AlrtDoalogTestViewController
let vc = UIViewController()
newViewController.modalPresentationStyle = .fullScreen
self.present(newViewController, animated:false, completion:nil)
Combative Caracal