iOS Swift - Navigation
Given this code snippet, what will happen when
navigate() is called?func navigate() {
let vc = UIViewController()
vc.view.backgroundColor = .red
navigationController?.pushViewController(vc, animated: false)
}