I\'m having serious problems getting my navigation controller to work and have tried pretty much every related question on this website.
My problem is that when I perfor
I finally figured out the problem.
performSegueWithIdentifier
was being called before viewDidAppear
was called on the LoadingViewController. A synchronisation error basically.
You should not perform segue in viewDidLoad. Try performing in viewDidApperar:
Apple documentation:
Displaying a View Controller’s Contents Programmatically … Present it from another visible view controller. …