I would like to hide and show the navigation bar on tap like the one in the photos app BUT without loosing the functionality of the MKMapView. the user should still be able to double tap for zoom, pinch and zoom and be able to select annotations.

I tried it with:

 UITapGestureRecognizer* tapRec = [[UITapGestureRecognizer alloc] 
                                  initWithTarget:self action:@selector(hideBar:)];
[self.myMKMapView addGestureRecognizer:tapRec];
[tapRec release];

But then the user can't select annotations anymore!And it also hides on double taps.

Any ideas ?

link|improve this question

feedback

3 Answers

you probably need to to implement the delegate method for this gesture recognizer to detect simultaneously as the one on the MKMapView. Then you need to perform your hiding/showing on a delay and if an annotation gets selected you need to cancel this.

Alternatively you can do a hitTest in the delegate method that allows you to prevent touches from being delivered to your gesture if the hit view is an MKAnnotationView.

link|improve this answer
For me, doing the hitTest method worked the best. An example of how to do a hitTest in the delegate method for the gesture recognizer can be found here: stackoverflow.com/questions/5866520/… – bobfet1 Oct 27 '11 at 7:52
feedback

You can tell your gesture recognizer to trigger only if every gesture recognizer from the map fail.

 UITapGestureRecognizer* tapRec = [[UITapGestureRecognizer alloc] 
                                  initWithTarget:self action:@selector(hideBar:)];
for (UIGestureRecognizer recognizer in self.myMKMapView.gestureRecognizers) {
    [tapRec requireGestureRecognizerToFail:recognizer];
}
[self.myMKMapView addGestureRecognizer:tapRec];
[tapRec release];

I don't know it is a gestureRecognizer that handles the annotation though. Guess you'll have to try.

link|improve this answer
this does not do anything at all cause MKMapView handles taps itself! – bllubbor Sep 10 '11 at 13:55
feedback

You can prevent a single click gesture recognizer from stealing the double click one with this code:

self.singleTap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
singleTap.numberOfTapsRequired = 1;
for (UIGestureRecognizer* recognizer in self.mapView.gestureRecognizers) {
    if([recognizer isKindOfClass: [UITapGestureRecognizer class]] && ((UITapGestureRecognizer*)recognizer).numberOfTapsRequired == 2) {
        [singleTap requireGestureRecognizerToFail:recognizer];
    }
}
[self.mapView addGestureRecognizer:self.singleTap];

Can can prevent it from stealing other gestures in the same way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.