arc4random()这个函数会生成10位数的随机数(uint32),其生成的最大数为:4294967295(2^32 - 1),最小值为:0。
1、使用arc4random()函数求一个1-100的随机数(包括1-100);
NSInteger arc = arc4random() %100 + 1;//取余的方式
2、使用arc4random_uniform()函数求一个1-100的随机数(包括1-100);
NSInteger arc = arc4random_uniform(100) + 1;