我的应用程序在 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];