Search code examples
iosswiftsegueviewcontrollerdismiss

Close a viewcontroller after a segue


What I want is to close a viewController after performing a segue so that the back button of the navigation controller on the new view doesn't go back to the view that I just closed, but it goes to the view that precedes it in the storyboard like it is the first time that it is loaded.

enter image description here

I already tried stuff like dismiss and so but it doesn't really work for me as it only closes the view in which the button that I pressed for performing the function is located :

@objc func goToList(){
   self.dismiss(animated: true, completion: nil)
   performSegue(withIdentifier: "goToList", sender: nil)
}

Solution

  • The navigation controller maintains a stack (array) of ViewControllers that have been opened (pushed). It also has the ability to pop these ViewControllers off the stack until it gets to a specific one.

    For example, if you wished to return to a previous view controller of type MyInitialVC then you'd want to search through the stack until you found that type of VC, and then pop to it:

    let targetVC = navigationController?.viewControllers.first(where: {$0 is MyInitialVC})
    if let targetVC = targetVC {
       navigationController?.popToViewController(targetVC, animated: true)
    }
    

    NB. written from memory without XCode, so you may need to correct minor typos