Scenario:
- I instantiate a UIViewController and added it to a containerViewController.
- I dismiss (remove) this child
- I select this same child to display again.
My Concern: I wish to create a single child UIViewController instance.
But It appears that I would create an additional instance of the child view controller per 'case' iteration, which I do not want.
Question: Does Swift already handle this?
...or must I check for the current view controller's instance prior to making it a child?
If I have to check for its existance, then I'll have to make 'viewController' global for all cases.