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);