从未调用过MKAnnotationView viewForAnnotation

时间:2011-06-20 14:07:43

标签: iphone ios xcode delegates mkmapview

在我花了2天的时间搜索bug后,我必须在这里寻求帮助。我有MapViewController并在地图上放置一些引脚。我已经从AppleCallouts和WeatherMap复制了苹果代码示例中的大部分代码。

无论如何,我似乎删除或遗漏了必要的部分。似乎MapViewController与以下代码之间没有任何关联

- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    NSLog(@"MKAnnotationView");
    return nil;
}

设置注释看起来像这样,效果很好:

- (void)createPoi:(CLLocationCoordinate2D)theCoordinate
{
    NSLog(@"createPoi");

    RandomAnnotation *randomAnnotation = [[RandomAnnotation alloc] init];
    [randomAnnotation setTheCoordinate:theCoordinate];
    [randomAnnotation setTheTitle:@"bla"];
    [randomAnnotation setTheSubTitle:@"bla"];
    [self.mapAnnotations insertObject:randomAnnotation atIndex:kRandomAnnotationIndex];
    [randomAnnotation release];
    [self.mapView addAnnotation:[self.mapAnnotations objectAtIndex:kRandomAnnotationIndex]];
}

我无法弄清楚出了什么问题。任何人都可以给我一些提示吗?我不得不承认我对委托模式没有任何经验。

2 个答案:

答案 0 :(得分:16)

确保已设置地图视图的delegate属性。

如果地图是在IB中创建的,请右键单击它并将其委托出口连接到文件所有者。

如果地图是在代码中创建的,请在创建地图视图后设置委托:

mapView.delegate = self;

答案 1 :(得分:2)

在声明MKMapView的.h中以及声明viewForAnnotation方法的位置,请确保在您的类应包含的协议列表中添加MKMapViewDelegate:

@interface myViewController : UIViewController <MKMapViewDelegate> {
    MKMapView *_mapView;
}

然后在viewDidLoad方法中,一定要添加

_mapView.delegate = self;

如果您已经使用它完成了事情,也可以在界面构建器中分配mapView的委托!