如何在MKMapView中显示两种不同颜色的引脚注释?

时间:2011-01-13 03:07:28

标签: ios4 mkmapview mkannotation

我正在使用MKMapView Annotation来显示pin的。在我的项目中有很多引脚丢弃。我想只显示当前位置的引脚颜色和其他引脚的颜色之间的区别。我怎样才能显示两个不同引脚的颜色为当前位置和其他位置。

1 个答案:

答案 0 :(得分:6)

   // Identify which pin is being selected  
   if([[annotation title] isEqualToString:@"Current Location"]) 
   {   
     annView.pinColor = MKPinAnnotationColorRed;
   }

同时查看此链接: Issue with Map Annotation and MKMapView in iOS 4.2?