当我运行应用程序时,我不断收到错误:
"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
由于
答案 0 :(得分:2)
将您的数组定义如下:
var firstArray = ["firstItem", "secondItem", "thirdItem"]
然后从这里做随机数:
let randomIndex = Int(arc4random_uniform(UInt32(firstArray.count)))
获得如下结果:
var result = self.firstArray[randomIndex]
祝你好运!