iPhone multitouch - Some touches dispatch touchesBegan: but not touchesMoved:
- by zkarcher
I'm developing a multitouch application. One touch is expected to move, and I need to track its position. For all other touches, I need to track their beginnings and endings, but their movement is less critical.
Sometimes, when 3 or more touches are active, my UIView does not receive touchesMoved: events for the moving touch. This problem is intermittent, and can always be reproduced after a few attempts:
Touch the screen with 2 fingers.
Touch the screen with another finger, and move this finger around.
The moving finger always dispatches touchesBegan: and touchesEnded:, but sometimes does not dispatch any touchesMoved: events.
Whenever the moving touch does not dispatch touchesMoved: events, I can force it to dispatch touchesMoved: if I move one of the other touches. This seems to "force" every touch to recheck its position, and I successfully receive a touchesMoved: event. However, this is clumsy.
This bug is reproducible on both the iPhone 2G and 3GS models.
My question is: How do I ensure that my moving touch dispatches touchesMoved: events?
Does anyone have any experience with this issue? I've spent few fruitless days searching the web for answers. I found a post describing how to sync touch events with the VBL: http://www.71squared.com/2009/04/maingameloop-changes/ . However, this has not solved the problem.
I really don't know how to proceed. Any help is appreciated!