I need to set the view controller of the home screen as the the root of the navigation controller, no matter how the user reaches it (push/show or custom segue)
The following code put in the viewDidLoad of a view controller seems to have no effect with iOS 7:
[self.navigationController setViewControllers:@[self]];
The navigation stack does not change at all.
Have you ever experienced any similar issue?
Thanks, DAN