0
ユーザー位置の注釈イメージを変更するように見えることがあります。 私が間違っていますどこにそれがデキューすることはできません最初に注釈を初期化するのを忘れユーザー位置ピンのカスタム注釈
-(MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
if ([annotation isKindOfClass:[MKUserLocation class]]) {
NSString* AnnotationIdentifier = @"Annotation";
MKAnnotationView *annoationView = [mapView dequeueReusableAnnotationViewWithIdentifier:AnnotationIdentifier];
[annoationView setImage:[UIImage imageNamed:@"melocation"] ];
return annoationView;
}
}
いやぁ... あなたが言ったように私はそれを忘れました。 ありがとう! – ironRoei