I'm trying to programmatically change the view in the navigation controller which is inside a tab controller. I defined a UINavigationController and made it to be the class for that navigation controller view. In the viewDidAppear method I tried to do performSequeWithIdentifier but it does not work. Please help to do this.
class ABCNavigationController: UINavigationController
{
override func viewDidAppear(animated: Bool) {
self.performSegueWithIdentifier("MySegue", sender: self)
}
}
Thanks, Ruben