iOS Swift - Navigation
Consider this code:
What is the visible screen after these calls?
let nav = UINavigationController(rootViewController: HomeViewController()) nav.pushViewController(SettingsViewController(), animated: true) nav.popToRootViewController(animated: true)
What is the visible screen after these calls?
