I'd like to create an app without using the fancy iOS navigation bar. What's the best or most correct way to change between full screens?
So say I start on "Home", and I want to go to "LogIn" without using the navigation bar -- what should I do? Should I change rootViewController? And when I swap in the new view, how do I make sure the old view is completely released? I imagine with ARC if there's no references it will merely disappear? And pre-ARC I have to set everything to null?
Or is the correct way to hide the navigation bar and use its stack?
Thanks!