2

我正在寻找任何允许我这样做的库:

1 http://zsoft.es/imgs/annotations.jpg

并且可能在标题的右侧添加一个按钮,如果可能的话,在字幕中添加更多图像或在字幕中添加按钮......

谢谢。

4

2 回答 2

1

您可以在 MKAnnotationView 上设置以下属性。

// The left accessory view to be used in the standard callout.
@property (retain, nonatomic) UIView *leftCalloutAccessoryView;

// The right accessory view to be used in the standard callout.
@property (retain, nonatomic) UIView *rightCalloutAccessoryView;
于 2013-01-31T15:13:39.203 回答
1

Apple 文档中使用leftCalloutAccessoryView

(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation

您可以将 a 分配UIImageViewleftCalloutAccessoryView

myAnnotationView.leftCalloutAccessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myImage.png"]
于 2013-01-31T15:18:51.363 回答