我正在寻找任何允许我这样做的库:
1 http://zsoft.es/imgs/annotations.jpg
并且可能在标题的右侧添加一个按钮,如果可能的话,在字幕中添加更多图像或在字幕中添加按钮......
谢谢。
我正在寻找任何允许我这样做的库:
1 http://zsoft.es/imgs/annotations.jpg
并且可能在标题的右侧添加一个按钮,如果可能的话,在字幕中添加更多图像或在字幕中添加按钮......
谢谢。
您可以在 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;
从Apple 文档中使用leftCalloutAccessoryView
:
在(MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
您可以将 a 分配UIImageView
给leftCalloutAccessoryView
:
myAnnotationView.leftCalloutAccessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myImage.png"]