In my app I have an object(Car image) that needs to move on the screen. I need to schedule myFunction every 1ms if possible. I read apple documentation and I understood that NSTimer resolution is limited to 50-100ms, which is not enough for my use case (moving an object quickly on the screen).
What could be the alternatives to the NSTimer object?
Thanks in advance.