In a fairly simple application that I am making, I use many NSTimers, one which runs at a rate of .01 seconds that I use to change the position of multiple images. This causes major lag. How can I fix this? Please explain in detail, as I am fairly new to app dev.
Share
From the NSTimer Docs (emphasis: mine):
If you want to work at the display frequency, see
CADisplayLink.However, you should first understand where you program spends its time now to understand what makes it slow (profiler).