Assuming I start with a blank project, and I add 2 views (UIViewController,UITableController).
What’s the proper way to jump from a UIViewController to a UITableController without a navigation controller stack?
Ex: think of a welcome page, click here to continue, and it takes you to the table controller.
Thanks!
If these are the ONLY view controllers, you can do it by reassigning the
rootViewControllerproperty of theUIWindowJust set it to whichever controller you want to display, and it will do the rest.