I want to present two view controllers in a row, without seeing the first one. I want to be able to return from the second one to the first.
I have read this post, but the responses focus on using the navigation controller, while I want to present the second view controller modally.
The use case is: My initial VC check if the user is logged in, and presents the login VC if not. If yes, it displays the main VC. On logout, I should be able to unwind to the login VC.