vote up 0 vote down star

So, UIResponder has methods like:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

My question is, what's the difference between the touches parameter, and [event allTouches]?

flag

1 Answer

vote up 0 vote down check

All sets of touches are stored within event.

However, for convenience Apple separately provides the touch the triggered the touchesBegan method to be invoked as a parameter.

If you searched through [event allTouches] and compared them to the UITouch within [touches anyObject], you would find a match.

link|flag

Your Answer

Get an OpenID
or

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