我已经实现了 MKAnnotionView:
- (MKAnnotationView*) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
{
if([annotation isKindOfClass:[MKUserLocation class]])
return nil;
NSString *identifier = @"mypin";
MKAnnotationView *annotationView = [mapView dequeueReusableAnnotationViewWithIdentifier:identifier];
if(annotationView == nil)
{
annotationView = [[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
annotationView.canShowCallout = YES;
UIImageView *pin = [[UIImageView alloc] initWithImage:[UIImage imageNamed:identifier]];
UIImageView *shadow = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"pin_shadow"]];
shadow.frame = CGRectMake(21, 36, 60, 27);
[annotationView addSubview:shadow];
[annotationView addSubview:pin];
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
btn.frame = CGRectMake(0, 0, 11, 20);
[btn setImage:[UIImage imageNamed:@"arrow"] forState:UIControlStateNormal];
annotationView.rightCalloutAccessoryView = btn;
annotationView.centerOffset = CGPointMake(-(44.0f/2), -62.0f);
}
return annotationView;
}
大头针和阴影在地图上显示得很好,但是当我按下大头针时,现在会显示标注。我很肯定注释对象具有标题和副标题值。
如果我使用 MKAnnotionView 上的 .image 属性添加我的图钉,它可以工作,但是我的阴影在图钉的顶部.. 嗯!:/
出了什么问题?