i add MKPinAnnotationView and setDragAble. my code is here

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
    MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin"];
    [annotationView setDraggable:YES];
    annotationView.pinColor = MKPinAnnotationColorPurple;
    return [annotationView autorelease];
}

ok i can drag pin.

but one problem is it's not just one tap. always need second tap.

when i first tap pin is selected but can't drag. when i tap again it's available drag.

what's wrong? i want just one tap drag like "Map.app"

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Reslove this problem. ^^

i think for drag pin, pin is already selected.

so selected MKPinAnnotationView when it init.

my new code.

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation {
    MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"pin"];
    [annotationView setDraggable:YES];
    annotationView.pinColor = MKPinAnnotationColorPurple;
    [annotationView setSelected:YES animated:YES];
    return [annotationView autorelease];
}
link|improve this answer
1  
I had this exact same problem today, and came up with almost the same solution, except I called -[mapView selectAnnotation:] in the delegate's mapView:didAddAnnotationViews: method. Seems to work just as well. – Daniel Dickison Feb 22 '11 at 2:25
feedback

To drag a pin you need to tap and hold, not double tap.

You will not be able to change this behaviour without using a private API which will most likely get your app rejected.

link|improve this answer
first tap and hold doesn't drag. second tap and hold only drag.... – seapy Feb 22 '11 at 1:58
feedback

Your Answer

 
or
required, but never shown

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