首页 > 代码库 > iOS 随机数获取

iOS 随机数获取

//获取一个32位随机数static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";   //!@#$%^*()//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 随机数获取