gpt4 book ai didi

iphone - 标签中的随机数-iPhone

转载 作者:行者123 更新时间:2023-11-28 23:18:27 25 4
gpt4 key购买 nike

我在这里做错了什么?当我在模拟器中运行时,我没有得到显示的 randomNum 值。(我已经链接了 IB 中的所有内容)。 (编辑:实际上程序现在崩溃了)

.m file:

randomNum=arc4random() % 100;
randomNumLabel.text=randomNum;

.h file:
int randomNum;
int guess;
IBOutlet UITextField *numberField;
IBOutlet UILabel *randomNumLabel;

最佳答案

您需要使用 NSStringstringWithFormat: 方法将数字转换为字符串。

randomNumLabel.text = [NSString stringWithFormat:@"%i", randomNum];

关于iphone - 标签中的随机数-iPhone,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4523823/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com