1

我的应用程序在 iOS5 中正常工作,更新到 iOS6 后,我无法在MKMapView. 我发现,那个(MKAnnotationView *)mapView:(MKMapView *)_mapView viewForAnnotation:(id<MKAnnotation>)annotation函数没有被调用。所以我在地图上只看到默认的红色图钉。这是我的初始化代码:

[self setMapView:[[MKMapView alloc] initWithFrame:CGRectMake(FRAME_X, FRAME_Y, FRAME_FULL_WIDTH, FRAME_HEIGTH)]];
[self.mapView addAnnotations:self.annotations];
[self.mapView setDelegate:self];
[self.view addSubview:self.mapView];
4

1 回答 1

3

phix23 解决方案是正确的。我需要在注释之前设置委托

于 2012-09-24T09:10:44.377 回答