码迷,mamicode.com
首页 > 其他好文 > 详细

随机数+随机字符串

时间:2016-02-24 20:53:26      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:

随机数

随机取0-100
arc4random() % 101
随机取80+(0至20)

 (arc4random() % 21) +80;

 

 

随机字符串

-(NSString *)ret32bitString
{
    //随机生成n位字母
    int n=4;
char data[n]; for (int x=0;x<n;data[x++] = (char)(A + (arc4random_uniform(26)))); return [[NSString alloc] initWithBytes:data length:n encoding:NSUTF8StringEncoding]; }

 

随机数+随机字符串

标签:

原文地址:http://www.cnblogs.com/Eazy/p/5214254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!