After selecting a row in my table view, the user is presented with a question.
When the user answers that question correctly, by selecting a round rect button that is hidden behind a label containing the answer text, the user is segued (modal) into the feedback view controller. A round rect button dismiss's the view.
table view controller (questions) -> view controller (question) - >view controller (answer feedback) <-dismiss back to question view controller.
On the view controller (question), I want the answer to mark as correct. In addition, I want the table view controller to present a check mark, declaring that question as complete.
What do I need to study next in order to achieve this? I realise that I will need to know about NSUserData to store the users answer if they were to quit the app half way through the quiz.
Am I right in saying that I will need to learn about delegation, to feedback the correct answer to the controllers?
Please help
Thanks
Rob
When the user answers that question correctly, by selecting a round rect button that is hidden behind a label containing the answer text, the user is segued (modal) into the feedback view controller. A round rect button dismiss's the view.
table view controller (questions) -> view controller (question) - >view controller (answer feedback) <-dismiss back to question view controller.
On the view controller (question), I want the answer to mark as correct. In addition, I want the table view controller to present a check mark, declaring that question as complete.
What do I need to study next in order to achieve this? I realise that I will need to know about NSUserData to store the users answer if they were to quit the app half way through the quiz.
Am I right in saying that I will need to learn about delegation, to feedback the correct answer to the controllers?
Please help
Thanks
Rob