Without creating multiple NSTimer instances, how would one achieve an NSTimer to fire a specific or multiple method with different intervals in a sequence. For example method1 (0.3 sec), method2 (0.5), method3 (0.7) and so on.
I would appreciate if someone could please share any example code.
I’m not sure what your final goal is with this but after reading your question I would recommend to try the following way, maybe this is what you’d look for.
you should put this code where you normally wanted to start the same
NSTimerclass with different intervals (what is not possible, unfortunately).and when need to unschedule all those selectors queued, use this code.