Swift - 使用arc4random()、arc4random_uniform()取得随机数

前端之家收集整理的这篇文章主要介绍了Swift - 使用arc4random()、arc4random_uniform()取得随机数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
arc4random()这个全局函数生成9位数的随机整数

1,下面是使用arc4random函数求一个1~100的随机数(包括1和100)
1
var temp:Int = Int(arc4random()% 100 )+ 1

2,下面是使用arc4random_uniform函数求一个1~100的随机数(包括1和100)
temp:Int = Int(arc4random_uniform())+1
原文链接:https://www.f2er.com/swift/323939.html

猜你在找的Swift相关文章