I have a project with a View Controller A (a home page), that then segues to View Controllers B, from there to C, and from there to D. So A >> B >> C >> D.
I use Unwind Segue to go from D to A and have set it up properly, but I am NOT using a navigation controller at all (it is impossible due to the lack of real estate on the device screen when it adds the Navigation Item and the complexity of existing views' pre-existing constraints in my project).
My question is: Does Unwind Segueing from D back to A properly dismiss from memory View Controllers B,C and D (which I will not be using again), when no navigation controller set up is used, just normal segues?
It wasn't clear to me from any tutorial/documentations I came across, as they all used Navigation Controllers, which is not helpful in my case. Many thanks for any help.