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

I was able to get the right X,Y,W,H coordinates with the UITapGestureRecognizer.

However, when using the same code for UIPinchGestureRecognizer, the results were all messed up.

this is the code that I used with the UITapGestureRecognizer:

    CGPoint pointInView = [recognizer locationInView:picImageView];


    CGFloat newZoomScale = picScrollView.zoomScale * 2.5f;
    newZoomScale = MIN(newZoomScale, picScrollView.maximumZoomScale);


    CGSize scrollViewSize = picScrollView.bounds.size;

    w = scrollViewSize.width / newZoomScale;
    h = scrollViewSize.height / newZoomScale;
    x = pointInView.x - (w / 2.0f);
    y = pointInView.y - (h / 2.0f);

    CGRect rectToZoomTo = CGRectMake(x, y, w, h);


    [picScrollView zoomToRect:rectToZoomTo animated:YES];
    klik=1;

    NSLog(@"DT X %f",x);
    NSLog(@"DT Y %f",y);
    NSLog(@"DT W %f",w);
    NSLog(@"DT H %f",h);
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.