I am building a Quiz app and got most of it done.
I want to use a single UIViewController for all the quiz questions, my issue is I'm not sure how to move or transition from one question to another using the same UIViewController.
So, if I have this basic outline:
If a user clicks on any answer, I'd like it to transition from this current question to the next one (assuming there is one), if no further questions are to be had, then it can launch a segue to the quiz results page.
Is there a recommended way to transition between questions on the same view controller?