in ios 5 i was able to disable the double tap zoom by just overriding it with a new double tap gesture. But it seems that the double tap gesture is no longer in the gesturerecognizer array that comes with the mkmapview.
NSArray *gestureRecognizers = [_mapView gestureRecognizers];
for (UIGestureRecognizer *recognizer in gestureRecognizers) {
NSLog(@"%@", recognizer);
}
returns nothing in ios 6, where in ios 5 it would return 2 recognizers, one for single tap and one for double tap.
This worked for me: [_mapView.subviews[0] addGestureRecognizer:MyDoubleTapOverrider];
Do you want to let the user do anything with the view? If not, it sufficient to set
userInteractionEnabled
toNO
. If so, what specific interactions do you need to allow? Everything but double-tapping? Why disable that one interaction?The more we know about your use case, the better the answers we can provide.
You can use a long tap gesture instead, that works.
This works for me:
And then let the recursive function loop through the subviews and find the GR:s.
This example removes all tap-GR:s. But I guess you can specify to remove whatever you'd like.
I'd look through the gesture recognizers of MKMapView's subviews. It's probably still there somewhere.
Of course, messing around with another view's GRs is slightly dubious and will likely break the next time Apple changes something about MKMapView...
EDIT: For the benefit of anyone else reading this, please check that it's a
UITapGestureRecognizer
and thatnumberOfTapsRequired == 2
andnumberOfTouchesRequired == 1
.Also, instead of disabling double-taps on the map entirely, consider adding a double-tap GR on the annotation and then do
[mapDoubleTapGR requireGestureRecognizerToFail:annotationDoubleTapGR]
. Again, hacky — don't blame me if it breaks on the next OS update!