2
我有,增加了註解指向一個MapView像這樣的應用程序:如何刪除某些註釋銷
annot = [[AnnotationDelegate alloc] init];
annot.coordinate = CLLocationCoordinate2DMake(lat,long);
annot.title = [NSString stringWithFormat:@"%d",id];
annot.subtitle = string;
[mapView addAnnotation: annot];
的代碼塊可以執行多次,我允許用戶添加儘可能多的引腳,因爲他們想要的mapView。我的問題是,有沒有辦法修改這個,以便用戶可以刪除某個引腳?現在,我似乎只能刪除最近添加的那個。
希望有任何幫助,謝謝。