I'm overriding the touches methods in a UIView for a piano app.

If I touch with one finger the iPhone or iPad I get -as expected- the touchesBegan callabck. And if I touch with a second finger I get that event in the touchesMoved callback. This is all fine, BUT I get the second (and third etc) callback ONLY if the first finger moves while I touch with the second one.

For a piano app this is a problem since I need to be able to touch really quickly.

Does anybody know a workarround for this? Is there an alternative than using touchesBegan/Moved/Ended methods?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Did you enable multitouch (setMultipleTouchEnabled:YES) for that UIView?

link|improve this answer
Of course I enabled multi touch on the UIView where I override the touchesX methods. BUT the piano keys were also in another sub view that acted like a container and there I had to setMultipleTouchEnabled:YES as well. Then it worked. – lukebuehler Jan 25 at 14:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.