0

我已经在这个项目上工作了一段时间:

https://developer.apple.com/library/ios/samplecode/teslameter/Introduction/Intro.html

我试图弄清楚如何使最高数字上升到 100。所以如果要达到 101,它将显示为 100,我将如何去做呢?我尝试过诸如

if (magnitudeLabel.text >= [NSString stringWithFormat:@"%.0f", 99])
{
    setText:[NSString stringWithFormat:@"%.0f",100];    
}

但没有任何效果,它超过 100。

4

1 回答 1

2
if ([magnitudeLabel.text intValue] > 100) {
    [magnitudeLabel setText:@"100"];
}

看起来很公平,对吧?

于 2013-09-18T15:36:00.907 回答