我有一个应用程序,我希望它只做一些事情,如果int值是一定数量或以上,我似乎无法弄清楚如何做到这一点,我可以这样做,如果它正是数量,但不是如果它更多。
例如我的int值为0,每次按下按钮时它都会上升,当它变为20或更高时,我希望它在按下另一个按钮时执行某些操作。
感谢他的帮助!
- (IBAction)storeTroll:(id)sender {
if (count == 20) {
trollButton.hidden = NO;
}
}
答案 0 :(得分:3)
Operator Description
x == y Returns true if x is equal to y
x > y Returns true if x is greater than y
x >= y Returns true if x is greater than or equal to y
x < y Returns true if x is less than y
x <= y Returns true if x is less than or equal to y
x != y Returns true if x is not equal to y
因此,请使用&gt; =:
- (IBAction)storeTroll:(id)sender {
if (count >= 20) {
trollButton.hidden = NO;
}
}