-5

我有一个应用程序,我希望它只在 int 值是某个数字或更高的情况下做一些事情,我似乎无法弄清楚如何去做,如果它正好是数量,我可以做,但如果它更多.

例如,我的 int 值为 0,每次按下按钮时它都会上升,当它变为 20 或更高时,我希望它在按下另一个按钮时执行某些操作。

感谢他的帮助!

- (IBAction)storeTroll:(id)sender {
    if (count == 20) {
        trollButton.hidden = NO;
    }
}
4

1 回答 1

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

所以,使用 >= :

- (IBAction)storeTroll:(id)sender {
    if (count >= 20) {
        trollButton.hidden = NO;
    }
}
于 2012-05-08T23:35:36.520 回答