Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I add an annotation, I add a ".tag" to it. However I can never read the tag in the following method.

`- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation` 

    MKAnnotationView *annView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"MyPin"];
    annView.canShowCallout = YES;

    NSLog(@"annView.tag = %d", annView.tag);

    return annView;
}

The NSLog is always 0. Can anyone shed some light on this?

It is worth mentioning that if I NSLog annotation, I do see the tag.

2010-09-10 10:21:27.612 [1328:207] annotation = <BarPin: 0xdbfa5b0; frame = (0 0; 0 0); tag = 99; layer = <CALayer: 0xdbfa680>>
share|improve this question

1 Answer

up vote 0 down vote accepted

Likely you are setting the tag property on the annotation and trying to read it back on the annotation view.

Also, it looks like your code snippet is leaking annView; you may want to autorelease that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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