Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For some reason my touchesBegan method doesn't seem to be responding correctly. If I touch the screen with two fingers, then lift one up and put it down again, touchesBegan gets called correctly. If I touch the screen with one finger, then add a second finger, touchesBegan does not get called like it should. Is there some flag that I need to check? Below is a sample that illustrates my problem:

-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
     NSLog(@"touch");
}

Any ideas what's going on? I'm testing on an iPad with iOS 4.2 if it matters.

share|improve this question

1 Answer

up vote 6 down vote accepted

Yes, you need to set the multipleTouchEnabled property on your view.

When set to NO, the receiver receives only the first touch event in a multi-touch sequence. The default value of this property is NO.

share|improve this answer
Awesome. I thought I checked that value, but it turns out I didn't have it set. Either way, I don't think I understood what that flag actually did in the first place. Thanks. – Davido Dec 17 '10 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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