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

"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/

10-13 21:52