我正在使用 Cocos2D 2.0,目前我的问题是每秒调度一个方法一定次数。
我基本上想做的是:
1. If score is 10 or less, call the method 5 times a second
2. If score is 11 or more, call the method 10 times a second
所以对于间隔,我分别尝试了 1/5 或 1/10,但没有奏效。有没有某种方法我应该使用这个调用来做到这一点?
[self schedule:@selector() interval:];
谢谢!