I unwind from controller B to controller A.
When I print my view controllers stack on my unwind function (controller A), I still have my controller B in stack.
Is it normal that after an unwind the controllers stack is not updated ?!
Controller B:
self.bookmarkViewController.performSegue(withIdentifier: "unwindToViewController", sender: nil)
Controller A
@IBAction func unwindToViewController(segue: UIStoryboardSegue) {
print(self.navigationController?.viewControllers)
}