//獲取一個32位隨機數 static const char _randomStr[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; //!@#$%^*() //一、獲取一個隨機整數範圍在:[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]; }