Objctive-c基础教程—产生随机数、整形转字符型

最近做一个登录界面,需要做验证码,验证码是随机生成的。学习Objctive-C已有两个月了,现在才刚刚入门,很多东西还不懂,找了一些资料终于把随机数给弄出来了。
发现Objctive——C跟C++有很多相同的地方。


- (UIView *)codeLabel

{

 if (codeLabel == nil)

 { 

 //获取随机数

int aNumber =arc4random()%8999 + 1000;

 //NSLog(@"%d",aNumber);

//NSLog(@"%d",&aNumber);

 

CGRect frame = CGRectMake(160, 8.0, 50, kTextFieldHeight);

kLeftMargin == 250;

codeLabel =[[UILabel alloc] initWithFrame:frame];

codeLabel.textColor = [UIColor blackColor];

 

codeLabel.font = [UIFont boldSystemFontOfSize:18];

 

//整型转换为字符型

codeLabel.text =[NSString stringWithFormat:@"%d",aNumber];

 

}

return codeLabel;

}

posted @ 2010-12-20 16:32  子非あ鱼  阅读(1981)  评论(0编辑  收藏  举报