gpt4 book ai didi

arrays - 从不重复的数组中洗牌/随机化问题 (SWIFT)

转载 作者:行者123 更新时间:2023-12-05 06:15:42 25 4
gpt4 key购买 nike

我浏览了几个小时才找到正确答案,但似乎无法将其正确应用到我自己的代码中。
大多数时候,在 stackoverflow 上给出的这个问题的答案是字符串和整数示例,我正在为问题类型而苦苦挣扎。

我刚刚开始使用 Xcode 和 Swift,到目前为止,我设法制作了一个运行良好的测验应用程序。

我已经使用了 shuffle,但我找不到其余的代码来重复之前提出的问题。
我真正想做的事情:我现在有 7 个问题,我希望只要有人想玩测验,就可以按不同的顺序问这些问题一次。

我在另外 2 个 swift 文件中有两个类。

这是我的 QuestionBank 类型,有 7 个问题全部正确完成:

class QuestionBank {
var list = [Question]()


init () {
list.append(Question(questionNumber: 0, image: "a", questionText: "a", choiceA: "a", choiceB: "a", choiceC: "a", choiceD: "a", answer: 1))

这是我的问题类:

}
class Question {

let number : Int
let questionImage: String
let question: String
let optionA: String
let optionB: String
let optionC: String
let optionD: String
let correctAnswer: Int


init(questionNumber: Int, image: String, questionText: String, choiceA: String, choiceB: String, choiceC: String, choiceD: String, answer: Int) {

number = questionNumber
questionImage = image
question = questionText
optionA = choiceA
optionB = choiceB
optionC = choiceC
optionD = choiceD
correctAnswer = answer
}

还有 updateQuestion 的函数,我相信 sh*t 应该发生但没有发生。

func updateQuestion() {

if questionNumber <= allQuestions.list.count - 1 {

imageView.image = UIImage(named:(allQuestions.list[questionNumber].questionImage))
QuestionLabel.text = allQuestions.list[questionNumber].question
optionA.setTitle(allQuestions.list[questionNumber].optionA, for: UIControl.State .normal)
optionB.setTitle(allQuestions.list[questionNumber].optionB, for: UIControl.State .normal)
optionC.setTitle(allQuestions.list[questionNumber].optionC, for: UIControl.State .normal)
optionD.setTitle(allQuestions.list[questionNumber].optionD, for: UIControl.State .normal)
selectedAnswer = allQuestions.list[questionNumber].correctAnswer

questionNumber += 1

allQuestions.list.shuffle()

最佳答案

每次调用 updateQuestion 时,您似乎都在洗牌 list,这似乎是这里的问题。您只应调用一次 shuffle 并逐个遍历问题。要解决此问题,请从 updateQuestion 中删除 shuffle 并将其添加到 viewDidLoad 中,或者根据如下条件在 updateQuestion 中调用一次:

if questionNumber == 1 {
allQuestions.list.shuffle()
}

关于arrays - 从不重复的数组中洗牌/随机化问题 (SWIFT),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62364983/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com