gpt4 book ai didi

ios - 在 Swift 中使用 arc4random_uniform 从数组中提取随机字符串

转载 作者:搜寻专家 更新时间:2023-11-01 07:30:15 24 4
gpt4 key购买 nike

当我运行该应用程序时,我不断收到错误消息:

"Could not cast value of type 'Swift._NSContiguousString' to 'NSArray'." 

我也尝试过转换为 String,但这显然也不是解决方案。有没有人遇到过这个?我只是想从数组中提取一个随机字符串。

firstArray = ["firstItem", "secondItem", "thirdItem"]
randomArray = firstArray[Int(arc4random_uniform(UInt32(firstArray.count)))] as! NSArray

谢谢

最佳答案

保持你的数组定义如下:

var firstArray = ["firstItem", "secondItem", "thirdItem"]

然后从这里做随机数:

 let randomIndex = Int(arc4random_uniform(UInt32(firstArray.count)))

得到这样的结果:

var result = self.firstArray[randomIndex]

祝你好运!

关于ios - 在 Swift 中使用 arc4random_uniform 从数组中提取随机字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32937719/

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