2个问题我不能做一个CCTimer
工作,我已经通过问题看了很多。但是,我确实使NSTimer
工作正常,假设我使用了这个:
[NSTimer scheduledTimerWithTimeInterval:3 target:self selector:@selector(bombExplodes:) userInfo:0 repeats:1];
[CCTimer timerWithTarget:self selector@selector(bombExplodes:) interval:3]
我知道CCTimer
应该bombExplodes
在 3 秒内启动方法.. 但是它只是没有这样做!同时,NSTimer
作品也应有尽有!我不太确定我做错了什么..
此外,我之前尝试过使用 selfSchedule,尽管它工作正常,但我对此有一个小问题。说调用了 selfSched 调用,它应该在 5 秒内启动一个方法。如果在启动该方法之前再次调用相同的 selfSched 调用,我注意到它几乎取消了第一次调用(从而覆盖它)。这应该发生吗?
谢谢 !