gpt4 book ai didi

swift - arc4random Swift 3 语法

转载 作者:搜寻专家 更新时间:2023-10-31 08:22:25 24 4
gpt4 key购买 nike

我在 Swift 2 中制作了一个测验应用程序,我正在尝试将语法从随机更新为 arc4random...

if Questions.count > 0 && counter <= 15 {
QNumber = arc4random()% Questions.count
QLabel.text = Questions[QNumber].Question

AnswerNumber = Questions[QNumber].Answer

for i in 0..<Buttons.count{
Buttons[i].setTitle(Questions[QNumber].Answers[i], for: UIControlState())
}
Questions.remove(at: QNumber)
}

最佳答案

建议使用arc4random_uniform,而不是简单的arc4random

arc4random_uniform 需要一个 UInt32 参数,因此您必须来回转换值

qNumber = Int(arc4random_uniform(UInt32(questions.count)))

关于swift - arc4random Swift 3 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40614555/

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