Is it possible to make a quiz app without writing any code in Xcode at all, just using the story board feature?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Storyboard:
Without logic you will not be able to create anything useful or engaging. How would you tally a score? Track results/improvements? Randomize the questions to prevent the user from just memorizing the answers? The only kind of quiz/game I can think of you could possibly make using only storyboard would be to create a view with some text saying “You Passed” and then creating other static views with questions and buttons. When the user selects the correct button for the answer then segue to the next question otherwise segue to a “You Failed” view. This would require the user to have to get all the questions correct to pass.
Update:
Added an example on GitHub of a simple quiz made only in storyboard. You will notice that the navigation is terrible as a result of no added code.