我的应用程序地图页面中有一个要求.我必须自定义Callout泡泡.我需要添加一个图像,两个标签和一个具有特定高度和宽度的按钮.
我已经通过网络,找不到一个适当的链接,解释如何自定义标注泡沫.如果您有任何人遇到或知道,请与我分享.
任何简单的例子或链接都将是非常好的.
提前致谢
苏雷什
解决方法
一个帮助你的例子:
- (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,23,23); annotationView.rightCalloutAccessoryView = button; // Image and two labels UIView *leftCAV = [[UIView alloc] initWithFrame:CGRectMake(0,23)]; [leftCAV addSubview : yourImageView]; [leftCAV addSubview : yourFirstLabel]; [leftCAV addSubview : yourSecondLabel]; annotationView.leftCalloutAccessoryView = leftCAV; annotationView.canShowCallout = YES; return annotationView; }