I have a series of view controllers. One called home, followed by 10 others theat you navigate through in sequence, ie; home -> 1 -> 2 -> 3 and so on. All view controllers have a 'home' button which takes you back to the first 'home' view controller. Is there an efficient way of doing this rather than create a 10 separate segues from each VC back to 'home' VC?
Keep in mind that I want memory usage to be as efficient as possible without creating an instance of the same view controller again and again as I navigate back and forth.
Any help is greatly appreciated.