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