gpt4 book ai didi

iphone - 在标签中显示一个数字,但让它计算数字

转载 作者:行者123 更新时间:2023-11-29 03:35:47 25 4
gpt4 key购买 nike

我的类(class)中有一个 UILabel,我希望 View 显示数字,但要计数到数字。例如,如果数字是 368,它会快速攀升至 250-300,然后在达到该数字时开始减速。现在这个数字不会总是 368,数字会有所不同。它可能是 6 或 129 或 1023,所以它不可能是一成不变的数字。我显然知道如何创建 UILabel 因为我已经在我的应用程序中使用了它,我只需要向上计数的帮助。

我有一个“玩家 View ”,等等,他们得到一个分数,并将其传递到另一个 View “游戏结束 View ”,并且分数显示在 UILabel 中。

下面是“玩家 View ”传递数据的代码:

//finalScore is a int and so is currentScore
second.finalScore = self.currentScore;

这是“Gameover View ”传递数据的代码:

- (void)viewWillAppear:(BOOL)animated {
// scoreLabel is the IBOutlet to the UILabel in IB for displaying the score.
self.currentIndex++;
if(self.currentIndex == [self.numbersArray count]) self.currentIndex = 0;

self->scoreLabel.text = [NSString stringWithFormat:@"%d",self->finalScore];
}

提前致谢!

最佳答案

我自己想出来了。我找到了这个控件,它的工作原理正是我需要的! Click Here

关于iphone - 在标签中显示一个数字,但让它计算数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19203776/

25 4 0