The default pin drop animation doesn't work in my app, here is some code I wrote:

- (void)viewDidLoad {
    /*
        some code...
    */
    [theMapView addAnnotation:addAnnotation];
    [addAnnotation release];
}

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{
    MKPinAnnotationView *annoView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation 
                                                            reuseIdentifier:@"current"];
    annoView.animatesDrop = YES;
    annoView.pinColor = MKPinAnnotationColorGreen;
    return annoView;
}

Right now the pin just appear in the screen as default red one without any animation, the MKMapViewDelegate protocol has been adopted, anyone can see what's wrong here?

link|improve this question

1  
Are you sure the delegate method is called? did you set theMapView delegate property? – viggio24 Sep 23 '11 at 12:09
Where do you call this method? I just have an instance of MKMapView in this viewController. – Michael Sep 23 '11 at 12:13
1  
You will need to control drag from the map to your File's Owner and select delegate. Also control drag from the File's Owner to your MapView to make sure your map can recieve the annotation. – Bill Burgess Sep 23 '11 at 12:21
1  
try this where you have initialize theMapView write down [theMapView setDelegate:self]; – Sweeta Sep 23 '11 at 12:25
1  
Thanks, that does the trick! – Michael Sep 23 '11 at 12:26
feedback

1 Answer

First use:

[yourMap_view setDelegate:self];

in ViewDidLoad

Then call this for the drop animation :

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
MKPinAnnotationView*pinView=nil;
if(annotation!=map_view.userLocation)
{
    static NSString*defaultPin=@"com.invasivecode.pin";
    pinView=(MKPinAnnotationView*)[map_view dequeueReusableAnnotationViewWithIdentifier:defaultPin];
    if(pinView==nil)
        pinView=[[[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:defaultPin]autorelease];
    pinView.pinColor=MKPinAnnotationColorPurple;
    pinView.canShowCallout=YES;
    pinView.animatesDrop=YES;
}
else
{
    [map_view.userLocation setTitle:@"You are Here!"];
}
return pinView;
}
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.