MapKit改变了气泡颜色

时间:2012-02-20 09:41:52

标签: objective-c ios mapkit

我想知道是否有一种简单的方法来改变地图中注释气泡的颜色。

我知道你可以继承MKAnnotationView,但是改变颜色似乎有很多工作要做。还有另一种方式吗?

这就是我想要做的。这个设计缺少引脚,但它必须是那样但有一个引脚,就像使用MKPinAnnotationView时一样。 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以尝试循环浏览其子视图并更改正确的子视图背景颜色。

//change accordingly...
for(UIView *subview in [MKAnnotationView subviews]) {
    //get the right subview and change its background color

}