I'm a beginner in iOS development and have started out with Objective C. I am creating a quiz application that does the following:
edit: When addition is clicked it goes to the QuizViewController and displays addition questions, when subtracttion is clicked it goes to the QuizViewController and displays subtraction questions etc
(I know something similar was asked in swift but I don't know Swift)
My quiz app storyboard looks like this:
ViewController -> QuizViewController -> ResultViewController
Buttons on ViewController:
Addition
Subtraction
Multiplication
The whole view controller is connected to QuizViewController through 1 Segue called "toQuiz"
How do I pass this information?
Should I make separate view controllers after all?