如何在swift中使用arc4random生成随机字符串?有可能的?

时间:2017-01-16 16:00:55

标签: swift arc4random

1 个答案:

答案 0 :(得分:-1)

您必须将arc4random的结果限制为数组的长度。

array1[Int(arc4random_uniform(UInt32(array1.count)))]