gpt4 book ai didi

c# - xCode增量重置为0

转载 作者:行者123 更新时间:2023-12-01 19:03:53 26 4
gpt4 key购买 nike

我是xCode的新手,我有一个按钮,该按钮在每个Tap上将标签的值增加1,我有另一个按钮应将Label的值重置为0,增量工作完美,并且Reset正在执行作业,然后将值更改为0。

我的问题是:当您单击“增量”按钮时,它将在您停止的地方开始,例如您将计数器停止在49,然后重置为0!单击增量按钮将转到50,等等。

附言我是新来的编码!

这是我的代码:

- (IBAction)buttonPressed {
count++;

scoreLabel.text = [NSString stringWithFormat:@"%i", count];
}
- (IBAction)resetButton {
scoreLabel.text = @"0";

}

最佳答案

尝试这个:

- (IBAction)buttonPressed {
count++;
scoreLabel.text = [NSString stringWithFormat:@"%i", count];
}
- (IBAction)resetButton {
count = 0; //Resets the count
scoreLabel.text = [NSString stringWithFormat:@"%i", count];;

}

关于c# - xCode增量重置为0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21062466/

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