-1

特定の時間に複数のタイマーが作動しているので、何か言い方はありますか?

if (randomTimer isGoingOnAtTheSameTimeAs randomTimer2)
[self doSomethingAwesome];

どんな回答でも大歓迎です!

4

1 に答える 1

0
if ([randomTimer isValid] && [randomTimer2 isValid]) {
    [self doSomethingAwesome];
}
于 2012-07-15T04:49:26.353 に答える