0
我在mapView中有4-5種不同的註釋類。 下面的代碼我期望只有AnnotationType1應該回應for循環。在MKMapView中搜索特定MKAnnotation類
for (AnnotationType1* annotation in mymap.annotations)
{
NSLog(@"annotation class is %@", [annotation class]);
}
但是從控制檯上可以看出,我還得到其他類。
annotation class is AnnotationType1
annotation class is AnnotationType2
annotation class is AnnotationType3
annotation class is AnnotationType4
對AnnotationType1註釋執行操作的最佳方式是什麼?
非常感謝@Caleb。這非常有用。我將有單獨的數組來存儲不同種類的註釋類型。 – chatur 2012-01-07 06:42:53