0
A
回答
1
你可能添加的藍色按鈕,這樣的事情
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{
MKPinAnnotationView *annView=(MKPinAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:@"annViewIdentifier"];
if (annView == nil) {
annView = [[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"annViewIdentifier"] autorelease];
}
UIButton *infoDefaultButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
[infoDefaultButton addTarget:self
action:@selector(showDetails:)
forControlEvents:UIControlEventTouchUpInside];
annView.rightCalloutAccessoryView = infoDefaultButton;
}
,如果你想要的任何自定義按鈕,那麼你可以添加UIButtonTypeCustom
代替UIButtonTypeDetailDisclosure
並設置其框架。
相關問題
- 1. syntaxhighlighter如何更改註釋的顏色
- 2. iOS更改引腳註釋的顏色
- 3. ggplot2 - 註釋 - 更改文本註釋的背景顏色
- 4. VBA宏用於更改註釋顏色
- 5. 更改註釋文本顏色Wrangler
- 6. 圖像/按鈕上的iPhone SDK註釋/標註泡沫按
- 7. iphone註釋針和按鈕
- 8. 如何更改Netbeans IDE 8.2中的註釋顏色?
- 9. 如何更改Word中VSTO註釋的文本背景顏色?
- 10. 如何更改intellij中CoffeeScript TODO註釋的顏色?
- 11. 如何更改Visual Studio代碼中的註釋顏色?
- 12. 如何更改emacs lua-mode.el中的註釋顏色?
- 13. 註釋標註上的附件按鈕
- 14. 如何更改disqus註釋的背景顏色?
- 15. 如何更改默認的註釋顏色VS2010
- 16. Xamarin.iOS:如何更改蘋果地圖上的註釋針顏色
- 17. 如何將System.Drawing.Color從C#轉換爲Excel.ColorFormat?更改註釋顏色
- 18. 標註註釋上標註按鈕的文字
- 19. 如何更改按鈕的tabcontrol顏色?
- 20. 如何更改gridView的按鈕顏色
- 21. 如何更改按鈕的顏色?
- 22. 如何更改按鈕的顏色
- 23. 如何更改UIActionsheet按鈕的顏色?
- 24. 用python更改PDF中的突出顯示註釋的顏色
- 25. 更改vim中的註釋的字體顏色
- 26. 更改顏色的按鈕
- 27. 在JFreeChart中更改註釋的顏色和線寬
- 28. 標準更改註釋
- 29. 更改按鈕標籤顏色Sencha
- 30. 如何更改按鈕顏色?
annView.image = [UIImage imageNamed:@「flag.png」]; \t \t annView.annotation = annotation; UIButton * rightButton = [UIButton buttonWithType:UIButtonTypeCustom]; \t NSInteger annotationValue = [self.annobjs indexOfObject:annotation]; rightButton.frame = CGRectMake(5,100,10,10); rightButton.tag = annotationValue; UIImage * greyImage = [UIImage imageNamed:@「arrow.png」]; [rightButton setBackgroundImage:grayImage forState:UIControlStateHighlighted]; [rightButton addTarget:self action:@selector(showDetails:)forControlEvents:UIControlEventTouchUpInside]; annView.rightCalloutAccessoryView = rightButton; – 2011-12-19 06:58:56
好的... CGRectMake(0,0,23,23);這是工作,但圖像不顯示在第一位。剩下的東西? – 2011-12-19 07:11:17
我剛剛做了像你說的,但我的按鈕圖像不顯示。它只有在點擊那個按鈕的地方後纔會顯示。在彈出標題和子標題只能看到......有什麼可以解決這個問題? – 2011-12-20 13:43:26