我有一張帶有2個註釋的地圖,並且我需要2個不同的圖像給他們每個人。如何使用Swift將圖像更改爲MKAnnotation
我知道如何做一個註釋,但我的問題是有兩個註釋。
這裏是我的代碼之一:
func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
let reuseId = "pin"
var anView = mapView.dequeueReusableAnnotationViewWithIdentifier(reuseId)
anView = MKAnnotationView(annotation: annotation, reuseIdentifier: reuseId)
anView!.image = nil;
anView!.image = UIImage(named:"destinationPin")
return anView
}
而且如果任何人都可以,如果你給我解釋一下什麼是reuseId我會很感激。
在此先感謝
你是什麼意思兩個註釋?兩個單獨的課程? – sdasdadas
我在地圖上有兩個針,我希望他們每個人都有不同的圖像 –