標準標註,黑色泡泡很好,但可以自定義嗎?比如我想製作一個白色的泡泡版本。MKAnnotation的自定義標註視圖?
6
A
回答
7
有一個偉大的回答這個問題就在這裏:Customizing the MKAnnotation Callout bubble
如果這個答案是@MathieuF給出:
- (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 pin;
}
相關問題
- 1. 在Swift中自定義MKAnnotation的標註視圖
- 2. 自定義MKAnnotation標註氣泡
- 3. 自定義MKAnnotation標註按鈕
- 4. MKAnnotation的自定義圖像
- 5. 自定義MKAnnotation
- 6. 來自MKAnnotation標註的UIPopOver
- 7. 自定義的MKAnnotation
- 8. 自動顯示MKAnnotation標註
- 9. 自定義MKAnnotation類
- 10. iOS地圖視圖:自定義標註視圖位置調整
- 11. 如何爲MkAnnotation視圖自定義視圖就像自定義表格視圖一樣?
- 12. 自定義註釋標註視圖顯示不正確
- 13. 標尺自定義視圖
- 14. iPhone地圖視圖自定義註釋
- 15. 自定義註釋視圖圖像direferents
- 16. MKMapView的自定義註解視圖
- 17. 自定義地圖標註視圖隱藏在水龍頭上
- 18. 如何在地圖的註釋標註中添加自定義視圖
- 19. 當給出自定義圖標時,MKAnnotation會丟失標題和副標題
- 20. mkannotation中的自定義數據變量
- 21. 自定義地圖標註動畫
- 22. 如何在mapview中添加自定義標註視圖
- 23. Mapkit自定義標註幻燈片視圖從底部
- 24. 自定義標註視圖不想出現
- 25. 當我改變它的座標時,自定義MKAnnotation消失
- 26. Iphone:自定義MKAnnotationView標註
- 27. iOS Mapkit自定義標註
- 28. 自定義MKAnnotationView標註
- 29. MKAnnotation自定義標註按鈕一般操作 - 如何知道它來自哪個註釋? (iPhone)
- 30. 如何自定義MKAnnotation可拖動
[自定義MKAnnotation標註泡]的可能的複製(HTTP://計算器.com/questions/4094325/customizing-the-mkannotation-callout-bubble) –