On the first touches began and all touches moved from that touch I want to perform logic function A (move an image to that point).
On a touchesBegan while an existing touch is active I want to perform logic function B. I also want to check if three touches occur and perform logic function C, etc.
I want to ignore touchesMoved for touches beyond the first.
The best way I'm seeing so far is to make an array of touch objects / CGPoints and compare the touchesMoved to every item in the array. If the touch location is closest to the touch array index 0 location, I assume it is the first touch which is moving. Otherwise I can ignore it.
This seems messy to me, and I'm not confident that the iOS touch screen updates fast enough for this to be very accurate.
How can I do this better?
Adding cocos2D tag: I want to implement this in cocos2D and would like to know if any special considerations need to happen, eg layer management or properties needing to be set. (If this needs to be a separate question after this one is answered let me know.)