I currently have a structure where I have
Main Menu ---> Quiz View --> Results View
I'm using the presentModalViewController and dismissModalViewController to get from 1 layer to the next but I want to be able to go from the Results View to the Main Menu without having to go through the Quiz View. Is there a way to do that without using dismissModalViewController twice? I've read somewhere else that you can use the becomeFirstResponder and define the Main Menu as the rootViewController but I'm not exactly how to implement that.
Main Menu ---> Quiz View --> Results View
I'm using the presentModalViewController and dismissModalViewController to get from 1 layer to the next but I want to be able to go from the Results View to the Main Menu without having to go through the Quiz View. Is there a way to do that without using dismissModalViewController twice? I've read somewhere else that you can use the becomeFirstResponder and define the Main Menu as the rootViewController but I'm not exactly how to implement that.