我一直在使用这个项目一段时间:
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。
答案 0 :(得分:2)
if ([magnitudeLabel.text intValue] > 100) {
[magnitudeLabel setText:@"100"];
}
看起来很公平,对吧?