Why is the navigation bar not displayed immediately, but only after several transitions on the screens?
First Screen
Second Screen
Third Screen
Fourth Screen
the transition between the storyboard is done by code
let storyboard = UIStoryboard(name: "detail", bundle: nil)
let vc = storyboard.instantiateViewController(withIdentifier: "Login") as! TwoViewController
self.present(vc, animated: true)