將地圖添加到地圖視圖時,我無法訪問自定義註記類。我有自定義類工作正常,但我當我把它添加到地圖中我不知道如何通過這個委託訪問自定義註釋:將地圖添加到地圖時使用自定義註釋
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
我試着尋找在線和還沒有發現任何東西。任何幫助都會很棒。
其稱爲是這樣的:
CLLocationCoordinate2D coords = CLLocationCoordinate2DMake(shops.latitude, shops.longitude);
AnnotationForId *shop = [[AnnotationForId alloc] initWithCoordinate:coords];
//[[CLLocationCoordinate2DMake(shops.latitude, shops.longtitude)]];
shop.title = shops.name;
shop.subtitle = @"Coffee Shop";
shop.shopId = shops.id;
[map addAnnotation:shop];
但是如何在委託方法中調用該自定義註釋?我有一個自定義註釋設置,我只是不能訪問它在代表方法 – user1179321
你想要什麼...把這個代碼,並..按照它的建議,那麼它會工作得很好,並從委託方法alos這個調用太 – iPatel
我已經添加一個id到我的自定義註釋中,我想在委託方法中訪問它,當我調用annotation.id時它不起作用 – user1179321