What are the best methods to build a testing application using swift.... All I want is to pick a random questions from a list, with multiple choice answers.
What my logic looks like right now...hey I am new to this...
Class Question{
var question1 = "question 1"
var answer = "a"
}
func get question {
random ????
}
????
Yeah thats about where I am at as a new programmer.
I really appreciate all the help. Thanks.