I want to get the UITouch location of my tap from UIGestureRecognizer, but I can not figure out how to from looking at both the documentation and other SO questions. Can one
Apple Docs say
UIGestureRecognizer
- (NSUInteger)numberOfTouchesThe number of UITouch objects in a private array maintained by the receiver.
So you shouldn't access them.
Using the value returned by this method in a loop, you can ask for the location of individual touches using the
locationOfTouch:inView:method.