1

我编写了这段代码来创建自定义注释图像

 - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
    static NSString *google = @"googlePin";
    if ([annotation isKindOfClass:[myClass class]])
    {
        MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:google];
        if (!annotationView)
        {
            annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:google];
            annotationView.image = [UIImage imageNamed:@"pin.png"];
        }
        return annotationView;
    }
    return nil;

}

图像出现在地图上;但是,当我单击它时,什么也没有发生,没有标题也没有副标题。

你们有什么想法吗?

4

1 回答 1

12

当您覆盖时viewForAnnotation,您必须设置canShowCalloutYES(您分配/初始化的新视图上的默认设置是NO)。

如果您不覆盖该委托方法,则地图视图会创建一个canShowCallout已设置为的默认红色图钉YES

但是,即使canShowCallout设置为,如果注释的is或 blank (empty string) YES,标注仍然不会出现titlenil

(但同样,如果titleis 不是nil并且不是空白,则标注不会显示,除非canShowCalloutis YES。)

MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:google];
if (!annotationView)
{
    annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:google];
    annotationView.image = [UIImage imageNamed:@"pin.png"];
    annotationView.canShowCallout = YES;  // <-- add this
}
else
{
    // unrelated but should handle view re-use...
    annotationView.annotation = annotation; 
}

return annotationView;
于 2012-07-03T14:28:55.863 回答