我正在使用Iphopne学习地图,我已经阅读了一个教程,并已成功将图钉添加到特定位置...。

如何在图钉位置显示自己的照片?

如果可能,请提供一些代码...

谢谢

最佳答案

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation{
    MKPinAnnotationView *pinView = nil;
    static NSString *defaultPinID = @"CameraAnnotation";
    pinView = (MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
    if ( pinView == nil )
        pinView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:defaultPinID] autorelease];
        UIImageView *pinImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 24, 32)];
        UIImage *pinImage = [[UIImage alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"pinImage" ofType:@"png"]];
        pinImageView.image = pinImage;
        [pinImage release];

        [pinView addSubview:pinImageView];
        [pinImageView release];

        pinView.canShowCallout = YES;
        pinView.animatesDrop = YES;

        UIButton* photoButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
        photoButton.tag = ((PinAnnotationView*)annotation).tag;
        pinView.leftCalloutAccessoryView = photoButton;
        return pinView;
    }
}

08-27 19:15