iOS 随机数获取

Posted qingjoin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 随机数获取相关的知识,希望对你有一定的参考价值。

//获取一个32位随机数
static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";   //[email protected]#$%^*()

//1、获取一个随机整数范围在:[0,100)包括0,不包括100  int x = arc4random() % 100;
// 获取一个随机数范围在:[500,1000],包括500,不包括1000  int y = (arc4random() % 501) + 500;
//所以如果获取一个32位的随机数。就从_randomStr里面选择 _randomStr一共有62位长度。如果加上后面的符合就有71位。所以是%62  arc4random()%62
+(NSString*)randomStr
{
    char datas[32];
    for (int x=0;x<32;datas[x++] =_randomStr[arc4random()%62]); //71
    return [[NSString alloc] initWithBytes:datas length:32 encoding:NSUTF8StringEncoding];
}

 

以上是关于iOS 随机数获取的主要内容,如果未能解决你的问题,请参考以下文章

播放随机声音而不重复

iOS 随机数获取

如何调整 iOS 选择器轮以生成随机索引

iOS代码片段CodeSnippets

IOS开发-OC学习-常用功能代码片段整理

在 iOS 上使用 C++ 获取加密安全的随机数