自定义MKAnnotation标注泡泡

我在我的应用程序地图页面有一个要求。 我必须自定义标注泡泡。 我需要添加一个图像,两个标签和一个特定的高度和宽度的button。

我已经通过networking,找不到解释如何自定义标注泡沫的适当的链接。 如果你们中有人遇到或知道,请与我分享。

任何简单的例子或链接将是非常好的。

在此先感谢suresh

一个例子来帮助你:

- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation { MKAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"loc"]; // Button UIButton *button = [UIButton buttonWithType:UIButtonTypeDetailDisclosure]; button.frame = CGRectMake(0, 0, 23, 23); annotationView.rightCalloutAccessoryView = button; // Image and two labels UIView *leftCAV = [[UIView alloc] initWithFrame:CGRectMake(0,0,23,23)]; [leftCAV addSubview : yourImageView]; [leftCAV addSubview : yourFirstLabel]; [leftCAV addSubview : yourSecondLabel]; annotationView.leftCalloutAccessoryView = leftCAV; annotationView.canShowCallout = YES; return annotationView; } 

有关更多信息,请参阅: http : //developer.apple.com/library/ios/#documentation/MapKit/Reference/MKAnnotationView_Class/Reference/Reference.html%23//apple_ref/occ/cl/MKAnnotationView