-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 に答える