我在这里做错了什么?当我在模拟器中运行时,我没有得到显示的randomNum值。(我已经链接了IB中的所有内容)。 (编辑:实际上该程序现在崩溃了)
.m file:
randomNum=arc4random() % 100;
randomNumLabel.text=randomNum;
.h file:
int randomNum;
int guess;
IBOutlet UITextField *numberField;
IBOutlet UILabel *randomNumLabel;
最佳答案
您需要使用NSString
的stringWithFormat:
方法将数字转换为字符串。
randomNumLabel.text = [NSString stringWithFormat:@"%i", randomNum];
关于iphone - 标签中的随机数-iPhone,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4523823/