Hi
I have a simple question, how can I stop or pause the scheduler ?
[self schedule: @selector(tick:) interval:2];
I currently have a bool for ignoring it, but I am not sure if that is an efficient solution.
-(void) tick: (ccTime) dt
{
if (scheduleNotActive)
{
return;
}
}
Thanks