UIPinchGestureRecognizer position the pinched view between the two fingers
You can get the CGPoint of the midpoint between two fingers via the following code in the method handlingPinchGesture. CGPoint point = [sender locationInView:self]; My whole handlePinchGesture method is below. /* instance variables CGFloat lastScale; CGPoint lastPoint; */ – (void)handlePinchGesture:(UIPinchGestureRecognizer *)sender { if ([sender numberOfTouches] < 2) return; if (sender.state == UIGestureRecognizerStateBegan) { lastScale = … Read more