答案 0 :(得分:0)
试试这段代码:
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation
{
MKPinAnnotationView *annView=[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"];
annView.pinColor = MKPinAnnotationColorPurple;
annView.animatesDrop=TRUE;
annView.canShowCallout = YES;
annView.calloutOffset = CGPointMake(-5, 5);
[rightButton setImage:[UIImage imageNamed:@"demo_img.jpg"] forState:UIControlStateNormal];
annView.leftCalloutAccessoryView=rightButton;//add image on mapView
return annView;
}
答案 1 :(得分:-1)
最近,我不得不使用MKMapView
使用自定义标注(注释)开发应用。如果你想对它进行大量的自定义,你将无法绕过MKAnnotationView
的子类。
最有帮助的是那些教程:
简介教程:http://mithin.in/2009/06/22/using-iphone-sdk-mapkit-framework-a-tutorial
第1部分:http://blog.asolutions.com/2010/09/building-custom-map-annotation-callouts-part-1/
第2部分:http://blog.asolutions.com/2010/09/building-custom-map-annotation-callouts-part-2/(同时处理标注内的按钮)