iOS Swift - Navigation
Consider this Swift code inside a view controller:
let detailVC = UIViewController() detailVC.view.backgroundColor = .red navigationController?.pushViewController(detailVC, animated: true)What is the expected behavior when this code executes?
